Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump test daemon versions to latest in nixpkgs #238

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions packages.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
let
# Pinning to revision c65c2f09e5bb54cbbbc4aa72030d62e138d8f0cf
# - cln v23.02.2
# - lnd v0.16.2-beta
# - bitcoin v24.0.1
# - elements v22.1.0
# Pinning to revision d5954b58c980c4fb1d87a938ee65f2013104df26
# - cln v23.08
# - lnd v0.16.3-beta
# - bitcoin v25.0
# - elements v22.1.1

rev = "c65c2f09e5bb54cbbbc4aa72030d62e138d8f0cf";
rev = "d5954b58c980c4fb1d87a938ee65f2013104df26";
nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/archive/${rev}.tar.gz";
pkgs = import nixpkgs {};

Expand Down Expand Up @@ -40,4 +40,4 @@ in with pkgs;
};
testpkgs = [ go bitcoind elementsd clightning-dev lnd ];
devpkgs = [ go_1_19 gotools bitcoind elementsd clightning clightning-dev lnd ];
}
}