Skip to content

Commit ff847d5

Browse files
committed
Merge #748: update nixpkgs
b9019d1 test: remove clightning TODO-EXTERNAL requiring to disable offers (Jonas Nick) 7fb481c update nixpkgs (Jonas Nick) Pull request description: ACKs for top commit: erikarvstedt: ACK b9019d1 Tree-SHA512: 0f18de71c4f98e29ccccc9150c8138fcaf860f6e7813ec9ee6ed76efec2340c35edfdbe75f0b6bb59b4fe407f0e1f9579ed5cda6f970bfb66625398f5a80161f
2 parents 64fb83b + b9019d1 commit ff847d5

File tree

10 files changed

+22
-59
lines changed

10 files changed

+22
-59
lines changed

examples/deploy-container-minimal.sh

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,8 @@ cat > "$tmpDir/configuration.nix" <<EOF
2121
password = "a";
2222
};
2323
# When WAN is disabled, DNS bootstrapping slows down service startup by ~15 s
24-
# TODO-EXTERNAL:
25-
# When bitcoind is not fully synced, the offers plugin in clightning 24.05
26-
# crashes (see https://github.com/ElementsProject/lightning/issues/7378).
2724
services.clightning.extraConfig = ''
2825
disable-dns
29-
disable-plugin=offers
3026
'';
3127
}
3228
EOF

examples/deploy-container.sh

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -83,13 +83,6 @@ read -rd '' src <<EOF || true
8383
$(realpath "$configuration")
8484
];
8585
nix-bitcoin.generateSecrets = true;
86-
87-
# TODO-EXTERNAL:
88-
# When bitcoind is not fully synced, the offers plugin in clightning 24.05
89-
# crashes (see https://github.com/ElementsProject/lightning/issues/7378).
90-
services.clightning.extraConfig = ''
91-
disable-plugin=offers
92-
'';
9386
};
9487
};
9588
}

examples/deploy-qemu-vm.sh

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,6 @@ nix-build --out-link "$tmpDir/vm" - <<'EOF'
3030
<qemu-vm/vm-config.nix>
3131
];
3232
nix-bitcoin.generateSecrets = true;
33-
34-
# TODO-EXTERNAL:
35-
# When bitcoind is not fully synced, the offers plugin in clightning 24.05
36-
# crashes (see https://github.com/ElementsProject/lightning/issues/7378).
37-
services.clightning.extraConfig = ''
38-
disable-plugin=offers
39-
'';
4033
};
4134
}).config.system.build.vm
4235
EOF

examples/krops-vm-configuration.nix

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,4 @@
44
<nix-bitcoin/modules/deployment/krops.nix>
55
<qemu-vm/vm-config.nix>
66
];
7-
8-
# TODO-EXTERNAL:
9-
# When bitcoind is not fully synced, the offers plugin in clightning 24.05
10-
# crashes (see https://github.com/ElementsProject/lightning/issues/7378).
11-
services.clightning.extraConfig = ''
12-
disable-plugin=offers
13-
'';
147
}

examples/qemu-vm/minimal-vm.nix

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,8 @@ rec {
2727
nix-bitcoin.generateSecrets = true;
2828
services.clightning.enable = true;
2929
# disable-dns leads to faster startup in offline VMs
30-
# TODO-EXTERNAL:
31-
# When bitcoind is not fully synced, the offers plugin in clightning 24.05
32-
# crashes (see https://github.com/ElementsProject/lightning/issues/7378).
3330
services.clightning.extraConfig = ''
3431
disable-dns
35-
disable-plugin=offers
3632
'';
3733

3834
# Avoid lengthy build of the nixos manual

flake.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkgs/pinned.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ pkgs: pkgsUnstable:
55
charge-lnd
66
elementsd
77
extra-container
8-
lightning-loop
98
lightning-pool
109
lndconnect;
1110

@@ -18,6 +17,7 @@ pkgs: pkgsUnstable:
1817
electrs
1918
fulcrum
2019
hwi
20+
lightning-loop
2121
lnd
2222
nbxplorer;
2323

test/clightning-replication.nix

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,8 @@ let
2424

2525
# TODO-EXTERNAL:
2626
# When WAN is disabled, DNS bootstrapping slows down service startup by ~15 s.
27-
# TODO-EXTERNAL:
28-
# When bitcoind is not fully synced, the offers plugin in clightning 24.05
29-
# crashes (see https://github.com/ElementsProject/lightning/issues/7378).
3027
extraConfig = ''
3128
disable-dns
32-
disable-plugin=offers
3329
'';
3430
};
3531
};

test/nixos-search/flake.lock

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/tests.nix

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,8 @@ let
4343

4444
# TODO-EXTERNAL:
4545
# When WAN is disabled, DNS bootstrapping slows down service startup by ~15 s.
46-
# TODO-EXTERNAL:
47-
# When bitcoind is not fully synced, the offers plugin in clightning 24.05
48-
# crashes (see https://github.com/ElementsProject/lightning/issues/7378).
4946
services.clightning.extraConfig = ''
5047
${optionalString config.test.noConnections "disable-dns"}
51-
disable-plugin=offers
5248
'';
5349
test.data.clightning-plugins = let
5450
plugins = config.services.clightning.plugins;

0 commit comments

Comments
 (0)