We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c15ac3 commit a095f89Copy full SHA for a095f89
shell.nix
@@ -0,0 +1,11 @@
1
+with import <nixpkgs> {};
2
+stdenv.mkDerivation rec {
3
+ name = "dev";
4
+ env = buildEnv {
5
+ name = name;
6
+ paths = buildInputs;
7
+ };
8
+ buildInputs = [
9
+ nodejs-11_x
10
+ ];
11
+}
0 commit comments