quassel-webserver: Remove reference to <nixpkgs>
We already are in the <nixpkgs> repository and using <nixpkgs> within its own tree will depend on <nixpkgs> to be set in NIX_PATH, otherwise the evaluation will fail. So apart from this issue it isn't even necessary to use <nixpkgs> instead of the relative path to node-packages.nix, so let's use the latter. Signed-off-by: aszlig <aszlig@redmoonstudios.org> Cc: @uwap, @Mic92
This commit is contained in:
parent
03d8ee05fa
commit
2406387fd6
|
@ -3,7 +3,7 @@
|
|||
with lib;
|
||||
|
||||
let
|
||||
nodePackages = callPackage <nixpkgs/pkgs/top-level/node-packages.nix> {
|
||||
nodePackages = callPackage ../../../../top-level/node-packages.nix {
|
||||
neededNatives = [ python ];
|
||||
self = nodePackages;
|
||||
generated = ./quassel-webserver.nix;
|
||||
|
|
Loading…
Reference in New Issue