From 885bc16374f265bd968268408b4849c2766ee390 Mon Sep 17 00:00:00 2001 From: Jesper Louis Andersen Date: Tue, 14 Jan 2020 13:08:56 +0100 Subject: [PATCH] Drop in a nix shell for easier handling. --- shell.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..a59c99b --- /dev/null +++ b/shell.nix @@ -0,0 +1,16 @@ +{ pkgs ? import {} }: + +with pkgs; + +let + inherit (lib) optional optionals; + + erlang_wx = erlangR22.override { + wxSupport = true; + }; +in + +mkShell { + buildInputs = [ erlang_wx git libsodium ] + ++ optional stdenv.isLinux inotify-tools; +} \ No newline at end of file