matrix-wug/shell.nix

9 lines
176 B
Nix
Raw Normal View History

2019-02-25 21:20:43 +01:00
with import <nixpkgs> {};
stdenv.mkDerivation {
name = "node";
2020-07-20 02:12:17 +02:00
buildInputs = [ nodejs-10_x yarn ];
2019-02-25 21:20:43 +01:00
shellHook = ''
export PATH="$PWD/node_modules/.bin/:$PATH"
'';
}