lamassu-server/new-lamassu-admin/shell.nix
2019-10-31 12:28:51 +00:00

11 lines
189 B
Nix

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