nodePackages: fix evaluation

Introduced in 40e3ad60aa.
This commit is contained in:
Franz Pletz
2018-03-13 00:44:41 +01:00
parent efd7102026
commit 2c9d2d6526
+2 -2
View File
@@ -6,11 +6,11 @@
let let
nodeEnv = import ./../../development/node-packages/node-env.nix { nodeEnv = import ./../../development/node-packages/node-env.nix {
inherit (pkgs) stdenv python2 utillinux runCommand writeTextFile; inherit (pkgs) stdenv libtool python2 utillinux runCommand writeTextFile;
inherit nodejs; inherit nodejs;
}; };
in in
import ./node-packages-generated.nix { import ./node-packages-generated.nix {
inherit (pkgs) fetchurl fetchgit; inherit (pkgs) fetchurl fetchgit;
inherit nodeEnv; inherit nodeEnv;
} }