Files
to-hen/bvg/node/shell.nix
Kierán Meinhardt a86442c7b7 chore: import bvg
2020-10-17 22:14:00 +02:00

8 lines
215 B
Nix

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