Skip to content

Commit

Permalink
chore: temporary disable update for some packages
Browse files Browse the repository at this point in the history
  • Loading branch information
selfuryon committed Oct 30, 2024
1 parent e6566e5 commit db0964e
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 10 deletions.
7 changes: 4 additions & 3 deletions pkgs/erigon/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down
7 changes: 4 additions & 3 deletions pkgs/prysm/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down
7 changes: 4 additions & 3 deletions pkgs/sedge/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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.";
Expand Down
3 changes: 2 additions & 1 deletion pkgs/teku/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down

0 comments on commit db0964e

Please sign in to comment.