Get rid of nixpkgs everywhere and use pkgs arguments instead

This commit is contained in:
Jonas Nick 2019-01-02 11:24:55 +00:00
parent d2e203918b
commit 0fb3f9da5a
No known key found for this signature in database
GPG Key ID: 4861DBF262123605
5 changed files with 8 additions and 13 deletions

View File

@ -8,11 +8,11 @@
unstable-pkgs = import unstable-pkgs-git { };
# Custom packages
nodeinfo = (import pkgs/nodeinfo.nix);
nodeinfo = (import pkgs/nodeinfo.nix) { inherit pkgs; };
lightning-charge = import pkgs/lightning-charge.nix { inherit pkgs; };
nanopos = import pkgs/nanopos.nix { inherit pkgs; };
spark-wallet = import pkgs/spark-wallet.nix { inherit pkgs; };
liquidd = import pkgs/liquidd.nix;
liquidd = pkgs.callPackage (import pkgs/liquidd.nix) { };
in {
disabledModules = [ "services/security/tor.nix" ];
imports =
@ -32,6 +32,6 @@ in {
inherit lightning-charge;
inherit nanopos;
inherit spark-wallet;
liquidd = (pkgs.callPackage liquidd { });
inherit liquidd;
};
}

View File

@ -1,6 +1,4 @@
{pkgs ? import <nixpkgs> {
inherit system;
}, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-8_x"}:
{pkgs, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-8_x"}:
with pkgs;

View File

@ -1,6 +1,4 @@
{pkgs ? import <nixpkgs> {
inherit system;
}, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-8_x"}:
{pkgs, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-8_x"}:
with pkgs;

View File

@ -1,5 +1,6 @@
with import <nixpkgs> {}; # bring all of Nixpkgs into scope
{pkgs}:
with pkgs;
stdenv.mkDerivation {
name = "nodeinfo";
src = ./nodeinfo.sh;

View File

@ -1,6 +1,4 @@
{pkgs ? import <nixpkgs> {
inherit system;
}, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-8_x"}:
{pkgs, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-8_x"}:
with pkgs;