Merge fort-nix/nix-bitcoin#483: pkgs-unstable: inherit system from stable pkgs
472bcf1565
pkgs-unstable: inherit system from stable pkgs (Erik Arvstedt) Pull request description: ACKs for top commit: jonasnick: ACK472bcf1565
Tree-SHA512: f27418e863196f43e86f332ba9c6ffdd548cb29076acfd1e3304945045e31c6edef3a9a164acd5f0fee877e83f1e4988dcba8055aff4cac87821301c43f030f2
This commit is contained in:
commit
cae0ff448f
@ -3,7 +3,11 @@ let
|
|||||||
in
|
in
|
||||||
# Set default values for use without flakes
|
# Set default values for use without flakes
|
||||||
{ pkgs ? import <nixpkgs> { config = {}; overlays = []; }
|
{ pkgs ? import <nixpkgs> { config = {}; overlays = []; }
|
||||||
, pkgsUnstable ? import nixpkgsPinned.nixpkgs-unstable { config = {}; overlays = []; }
|
, pkgsUnstable ? import nixpkgsPinned.nixpkgs-unstable {
|
||||||
|
inherit (pkgs) system;
|
||||||
|
config = {};
|
||||||
|
overlays = [];
|
||||||
|
}
|
||||||
}:
|
}:
|
||||||
let self = {
|
let self = {
|
||||||
clightning-rest = pkgs.callPackage ./clightning-rest { };
|
clightning-rest = pkgs.callPackage ./clightning-rest { };
|
||||||
|
Loading…
Reference in New Issue
Block a user