Remove references to <nixpkgs>

Nixpkgs should not use <nixpkgs> to refer to itself, because $NIX_PATH
might not be set or not point to the same Nixpkgs. It's also
unnecessary.
This commit is contained in:
Eelco Dolstra
2014-09-23 15:48:15 +02:00
parent eb3794186c
commit 91fa55e702
3 changed files with 2 additions and 4 deletions

View File

@@ -3,7 +3,7 @@
with stdenv.lib;
let
nodePackages = callPackage (import <nixpkgs/pkgs/top-level/node-packages.nix>) {
nodePackages = callPackage (import ../../../top-level/node-packages.nix) {
neededNatives = [python] ++ optional (stdenv.isLinux) utillinux;
self = nodePackages;
generated = ./package.nix;