Skip to content

Commit cae0ff4

Browse files
committed
Merge #483: pkgs-unstable: inherit system from stable pkgs
472bcf1 pkgs-unstable: inherit system from stable pkgs (Erik Arvstedt) Pull request description: ACKs for top commit: jonasnick: ACK 472bcf1 Tree-SHA512: f27418e863196f43e86f332ba9c6ffdd548cb29076acfd1e3304945045e31c6edef3a9a164acd5f0fee877e83f1e4988dcba8055aff4cac87821301c43f030f2
2 parents 24c3d68 + 472bcf1 commit cae0ff4

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

pkgs/default.nix

+5-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@ let
33
in
44
# Set default values for use without flakes
55
{ pkgs ? import <nixpkgs> { config = {}; overlays = []; }
6-
, pkgsUnstable ? import nixpkgsPinned.nixpkgs-unstable { config = {}; overlays = []; }
6+
, pkgsUnstable ? import nixpkgsPinned.nixpkgs-unstable {
7+
inherit (pkgs) system;
8+
config = {};
9+
overlays = [];
10+
}
711
}:
812
let self = {
913
clightning-rest = pkgs.callPackage ./clightning-rest { };

0 commit comments

Comments
 (0)