Skip to content

Commit db0964e

Browse files
committed
chore: temporary disable update for some packages
1 parent e6566e5 commit db0964e

File tree

4 files changed

+14
-10
lines changed

4 files changed

+14
-10
lines changed

pkgs/erigon/default.nix

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,10 @@ buildGoModule rec {
2929
ldflags = ["-extldflags \"-Wl,--allow-multiple-definition\""];
3030
inherit subPackages;
3131

32-
passthru.updateScript = nix-update-script {
33-
extraArgs = ["--flake"];
34-
};
32+
# TODO: find out why nix-update can't update the package
33+
# passthru.updateScript = nix-update-script {
34+
# extraArgs = ["--flake"];
35+
# };
3536

3637
meta = {
3738
description = "Ethereum node implementation focused on scalability and modularity";

pkgs/prysm/default.nix

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,10 @@ buildGo121Module rec {
3636
"-X github.com/prysmaticlabs/prysm/v4/runtime/version.gitTag=v${version}"
3737
];
3838

39-
passthru.updateScript = nix-update-script {
40-
extraArgs = ["--flake"];
41-
};
39+
# TODO: find out why nix-update can't update the package
40+
# passthru.updateScript = nix-update-script {
41+
# extraArgs = ["--flake"];
42+
# };
4243

4344
meta = {
4445
description = "Go implementation of Ethereum proof of stake";

pkgs/sedge/default.nix

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,10 @@ in
3636

3737
subPackages = ["cmd/sedge"];
3838

39-
passthru.updateScript = nix-update-script {
40-
extraArgs = ["--flake"];
41-
};
39+
# TODO: find out why nix-update can't update the package
40+
# passthru.updateScript = nix-update-script {
41+
# extraArgs = ["--flake"];
42+
# };
4243

4344
meta = {
4445
description = "A one-click setup tool for PoS network/chain validators and nodes.";

pkgs/teku/default.nix

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ stdenv.mkDerivation rec {
2424
wrapProgram $out/bin/${pname} --set JAVA_HOME "${jre}"
2525
'';
2626

27-
passthru.updateScript = ./update.sh;
27+
# TODO: fix the update script
28+
#passthru.updateScript = ./update.sh;
2829

2930
meta = with lib; {
3031
description = "Java Implementation of the Ethereum 2.0 Beacon Chain";

0 commit comments

Comments
 (0)