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
2020-07-20 02:13:14 +02:00

9 lines
176 B
Nix

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