0784e2d479
This reverts commit 99295328b4
.
Removes nbxplorer/btcpayserver from travis
Adds nbxplorer/btcpayserver to pinned.nix
23 lines
605 B
Nix
23 lines
605 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
|
|
nbxplorer
|
|
btcpayserver;
|
|
inherit (nixBitcoinPkgsUnstable)
|
|
electrs
|
|
lightning-loop;
|
|
|
|
stable = nixBitcoinPkgsStable;
|
|
unstable = nixBitcoinPkgsUnstable;
|
|
}
|