Drop in a nix shell for easier handling.

This commit is contained in:
Jesper Louis Andersen 2020-01-14 13:08:56 +01:00
parent 885662c069
commit 885bc16374

16
shell.nix Normal file
View File

@ -0,0 +1,16 @@
{ pkgs ? import <nixpkgs> {} }:
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;
}