2020-03-04 17:08:46 +00:00
|
|
|
let
|
|
|
|
nixpkgsPinned = import ./nixpkgs-pinned.nix;
|
2020-04-22 21:53:06 +00:00
|
|
|
nixpkgsStable = import nixpkgsPinned.nixpkgs { config = {}; overlays = []; };
|
|
|
|
nixpkgsUnstable = import nixpkgsPinned.nixpkgs-unstable { config = {}; overlays = []; };
|
|
|
|
nixBitcoinPkgsStable = import ./. { pkgs = nixpkgsStable; };
|
|
|
|
nixBitcoinPkgsUnstable = import ./. { pkgs = nixpkgsUnstable; };
|
2020-03-04 17:08:46 +00:00
|
|
|
in
|
|
|
|
{
|
2020-04-22 21:53:06 +00:00
|
|
|
inherit (nixpkgsUnstable)
|
2020-03-26 09:14:03 +00:00
|
|
|
bitcoin
|
|
|
|
bitcoind
|
2021-06-02 01:11:26 +00:00
|
|
|
charge-lnd
|
2020-03-04 17:08:46 +00:00
|
|
|
clightning
|
2020-09-22 12:45:24 +00:00
|
|
|
lnd
|
2021-02-03 21:44:43 +00:00
|
|
|
lndconnect
|
2020-09-22 12:45:24 +00:00
|
|
|
nbxplorer
|
2021-04-23 10:46:17 +00:00
|
|
|
btcpayserver
|
2021-05-04 11:15:13 +00:00
|
|
|
electrs
|
2021-07-16 10:41:48 +00:00
|
|
|
elementsd
|
2021-07-07 13:12:09 +00:00
|
|
|
hwi
|
|
|
|
lightning-loop
|
|
|
|
lightning-pool;
|
2020-04-22 21:53:06 +00:00
|
|
|
|
2021-08-04 22:48:55 +00:00
|
|
|
inherit nixpkgsStable nixpkgsUnstable;
|
|
|
|
|
2020-04-22 21:53:06 +00:00
|
|
|
stable = nixBitcoinPkgsStable;
|
|
|
|
unstable = nixBitcoinPkgsUnstable;
|
2020-03-04 17:08:46 +00:00
|
|
|
}
|