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:
aszlig 2016-10-23 18:09:51 +02:00
parent 03d8ee05fa
commit 2406387fd6
No known key found for this signature in database
GPG Key ID: 1DE8E48E57DB5436
1 changed files with 1 additions and 1 deletions

View File

@ -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;