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