2020-03-04 09:08:46 -08:00
|
|
|
let
|
|
|
|
nixpkgsPinned = import ./nixpkgs-pinned.nix;
|
2020-04-22 14:53:06 -07: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 09:08:46 -08:00
|
|
|
in
|
|
|
|
{
|
2020-04-22 14:53:06 -07:00
|
|
|
inherit (nixpkgsUnstable)
|
2020-03-26 02:14:03 -07:00
|
|
|
bitcoin
|
|
|
|
bitcoind
|
2020-03-04 09:08:46 -08:00
|
|
|
clightning
|
2020-09-22 05:45:24 -07:00
|
|
|
lnd
|
|
|
|
nbxplorer
|
|
|
|
btcpayserver;
|
2020-07-07 03:30:08 -07:00
|
|
|
inherit (nixBitcoinPkgsUnstable)
|
|
|
|
electrs
|
|
|
|
lightning-loop;
|
2020-04-22 14:53:06 -07:00
|
|
|
|
|
|
|
stable = nixBitcoinPkgsStable;
|
|
|
|
unstable = nixBitcoinPkgsUnstable;
|
2020-03-04 09:08:46 -08:00
|
|
|
}
|