diff --git a/pkgs/erigon/default.nix b/pkgs/erigon/default.nix index 20cd2939..a97152c3 100644 --- a/pkgs/erigon/default.nix +++ b/pkgs/erigon/default.nix @@ -29,9 +29,10 @@ buildGoModule rec { ldflags = ["-extldflags \"-Wl,--allow-multiple-definition\""]; inherit subPackages; - passthru.updateScript = nix-update-script { - extraArgs = ["--flake"]; - }; + # TODO: find out why nix-update can't update the package + # passthru.updateScript = nix-update-script { + # extraArgs = ["--flake"]; + # }; meta = { description = "Ethereum node implementation focused on scalability and modularity"; diff --git a/pkgs/prysm/default.nix b/pkgs/prysm/default.nix index 1f11a1ac..11777f91 100644 --- a/pkgs/prysm/default.nix +++ b/pkgs/prysm/default.nix @@ -36,9 +36,10 @@ buildGo121Module rec { "-X github.com/prysmaticlabs/prysm/v4/runtime/version.gitTag=v${version}" ]; - passthru.updateScript = nix-update-script { - extraArgs = ["--flake"]; - }; + # TODO: find out why nix-update can't update the package + # passthru.updateScript = nix-update-script { + # extraArgs = ["--flake"]; + # }; meta = { description = "Go implementation of Ethereum proof of stake"; diff --git a/pkgs/sedge/default.nix b/pkgs/sedge/default.nix index 600a1a98..c7bc7f9c 100644 --- a/pkgs/sedge/default.nix +++ b/pkgs/sedge/default.nix @@ -36,9 +36,10 @@ in subPackages = ["cmd/sedge"]; - passthru.updateScript = nix-update-script { - extraArgs = ["--flake"]; - }; + # TODO: find out why nix-update can't update the package + # passthru.updateScript = nix-update-script { + # extraArgs = ["--flake"]; + # }; meta = { description = "A one-click setup tool for PoS network/chain validators and nodes."; diff --git a/pkgs/teku/default.nix b/pkgs/teku/default.nix index 12b3bea9..a68cd83f 100644 --- a/pkgs/teku/default.nix +++ b/pkgs/teku/default.nix @@ -24,7 +24,8 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/${pname} --set JAVA_HOME "${jre}" ''; - passthru.updateScript = ./update.sh; + # TODO: fix the update script + #passthru.updateScript = ./update.sh; meta = with lib; { description = "Java Implementation of the Ethereum 2.0 Beacon Chain";