22 lines
601 B
Nix
22 lines
601 B
Nix
let
|
|
nixpkgsPinned = import ./nixpkgs-pinned.nix;
|
|
nixpkgsStable = import nixpkgsPinned.nixpkgs { config = {}; overlays = []; };
|
|
nixpkgsUnstable = import nixpkgsPinned.nixpkgs-unstable { config = {}; overlays = []; };
|
|
nixBitcoinPkgsStable = import ./. { pkgs = nixpkgsStable; };
|
|
nixBitcoinPkgsUnstable = import ./. { pkgs = nixpkgsUnstable; };
|
|
in
|
|
{
|
|
inherit (nixpkgsUnstable)
|
|
bitcoin
|
|
bitcoind
|
|
clightning
|
|
lnd;
|
|
inherit (nixBitcoinPkgsUnstable)
|
|
electrs
|
|
lightning-loop;
|
|
|
|
stable = nixBitcoinPkgsStable;
|
|
unstable = nixBitcoinPkgsUnstable;
|
|
inherit nixpkgsUnstable;
|
|
}
|