16 lines
255 B
Nix
16 lines
255 B
Nix
{ 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;
|
|
} |