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