This repository has been archived on 2026-04-06. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
matrix-wug/shell.nix
Daniel Løvbrøtte Olsen f4a1354eaa Update nix-shell to node-10
2019-02-27 14:42:43 +01:00

9 lines
171 B
Nix

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