8f9ea61d6e
- bitcoind 0.20.1 -> 0.21.0 Manually create a wallet in the backup test because bitcoind does not create a default wallet anymore - disable the failing elementsd build on unstable
19 lines
566 B
Nix
19 lines
566 B
Nix
let
|
|
pinned = import ../pkgs/nixpkgs-pinned.nix;
|
|
pkgs = import pinned.nixpkgs-unstable {};
|
|
nbPkgs = import ../pkgs { inherit pkgs; };
|
|
pkgsUnstable = with nbPkgs; [
|
|
electrs
|
|
hwi
|
|
joinmarket
|
|
lightning-loop
|
|
|
|
## elementsd fails with error
|
|
# test/key_properties.cpp:16:10: fatal error: rapidcheck/boost_test.h: No such file or directory
|
|
# 16 | #include <rapidcheck/boost_test.h>
|
|
# | ^~~~~~~~~~~~~~~~~~~~~~~~~
|
|
# elementsd
|
|
];
|
|
in
|
|
pkgs.writeText "pkgs-unstable" (pkgs.lib.concatMapStringsSep "\n" toString pkgsUnstable)
|