Files
to-hen/bvg/node/shell.nix

8 lines
215 B
Nix
Raw Permalink Normal View History

2019-03-14 22:00:49 +01:00
with import <nixpkgs> {};
stdenv.mkDerivation {
name = "bvg-node";
buildInputs = [ nodePackages.yarn nodePackages.typescript ];
shellHook = ''
export PATH=$PATH:$(pwd)/node_modules/.bin
'';
}