Add nix config files
This commit is contained in:
parent
91fc4e7cc2
commit
95a23a964b
2 changed files with 102 additions and 0 deletions
14
shell.nix
Normal file
14
shell.nix
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
with import <nixpkgs> {};
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "node";
|
||||
buildInputs = [
|
||||
nodejs-8_x
|
||||
python2Full
|
||||
openssl_1_0_2
|
||||
postgresql_9_6
|
||||
];
|
||||
shellHook = ''
|
||||
export PATH="$PWD/node_modules/.bin/:$PATH"
|
||||
'';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue