File tree Expand file tree Collapse file tree 4 files changed +14
-10
lines changed Expand file tree Collapse file tree 4 files changed +14
-10
lines changed Original file line number Diff line number Diff 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" ;
Original file line number Diff line number Diff 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" ;
Original file line number Diff line number Diff line change 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." ;
Original file line number Diff line number Diff 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" ;
You can’t perform that action at this time.
0 commit comments