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
517 B
Nix
19 lines
517 B
Nix
let
|
|
fetch = { rev, sha256 }:
|
|
builtins.fetchTarball {
|
|
url = "https://github.com/nixos/nixpkgs/archive/${rev}.tar.gz";
|
|
inherit sha256;
|
|
};
|
|
in
|
|
{
|
|
# To update, run ../helper/fetch-channel REV
|
|
nixpkgs = fetch {
|
|
rev = "93c2261684ea8c65606d7167b5d52b8da7d7778a";
|
|
sha256 = "1vjh0np1rlirbhhj9b2d0zhrqdmiji5svxh9baqq7r3680af1iif";
|
|
};
|
|
nixpkgs-unstable = fetch {
|
|
rev = "891f607d5301d6730cb1f9dcf3618bcb1ab7f10e";
|
|
sha256 = "1cr39f0sbr0h5d83dv1q34mcpwnkwwbdk5fqlyqp2mnxghzwssng";
|
|
};
|
|
}
|