lamassu-server/shell.nix
2019-11-12 11:20:57 +00:00

14 lines
277 B
Nix

with import <nixpkgs> {};
stdenv.mkDerivation {
name = "node";
buildInputs = [
nodejs-8_x
python2Full
openssl_1_0_2
postgresql_9_6
];
shellHook = ''
export PATH="$HOME/.local:$PWD/node_modules/.bin/:$PATH"
'';
}