Merge #163: Make it easy to use pinned packages
47b2b110cc
pinned: make it easy to use pinned packages (William Casarin) Pull request description: ACKs for top commit: jonasnick: ACK47b2b110cc
Tree-SHA512: 4a45eee55ff87d8f00f7ef7af7bd6dfc4674c492d45a4875dc933edb5d21e06cd1bcedc73b07b8a2b804a4b1fe9d52223e623d382a348524621749beda8cc115
This commit is contained in:
commit
fa5937624d
@ -1,13 +1,18 @@
|
|||||||
let
|
let
|
||||||
nixpkgsPinned = import ./nixpkgs-pinned.nix;
|
nixpkgsPinned = import ./nixpkgs-pinned.nix;
|
||||||
unstable = import nixpkgsPinned.nixpkgs-unstable { config = {}; overlays = []; };
|
nixpkgsStable = import nixpkgsPinned.nixpkgs { config = {}; overlays = []; };
|
||||||
nixBitcoinPkgsUnstable = import ./. { pkgs = unstable; };
|
nixpkgsUnstable = import nixpkgsPinned.nixpkgs-unstable { config = {}; overlays = []; };
|
||||||
|
nixBitcoinPkgsStable = import ./. { pkgs = nixpkgsStable; };
|
||||||
|
nixBitcoinPkgsUnstable = import ./. { pkgs = nixpkgsUnstable; };
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
inherit (unstable)
|
inherit (nixpkgsUnstable)
|
||||||
bitcoin
|
bitcoin
|
||||||
bitcoind
|
bitcoind
|
||||||
clightning
|
clightning
|
||||||
lnd;
|
lnd;
|
||||||
inherit (nixBitcoinPkgsUnstable) electrs;
|
inherit (nixBitcoinPkgsUnstable) electrs;
|
||||||
|
|
||||||
|
stable = nixBitcoinPkgsStable;
|
||||||
|
unstable = nixBitcoinPkgsUnstable;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user