about summary refs log tree commit diff
path: root/pkgs/applications/blockchains/go-ethereum
diff options
context:
space:
mode:
authorsuperherointj <5861043+superherointj@users.noreply.github.com>2022-08-28 13:33:58 -0300
committerGitHub <noreply@github.com>2022-08-28 13:33:58 -0300
commit1134de874392101d10aa3c18d3bfd463425a82dd (patch)
tree14d894c295c659146d1df880d5358437eb3525bc /pkgs/applications/blockchains/go-ethereum
parent1a52861940d938a25eca9c77bae04ff4adee4209 (diff)
parent48ad86aa6a954fab59b9e1bcf1c508938555d61e (diff)
Merge pull request #188523 from asymmetric/geth-1.10.23
go-ethereum: 1.10.21 -> 1.10.23
Diffstat (limited to 'pkgs/applications/blockchains/go-ethereum')
-rw-r--r--pkgs/applications/blockchains/go-ethereum/default.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgs/applications/blockchains/go-ethereum/default.nix b/pkgs/applications/blockchains/go-ethereum/default.nix
index 423f1f43b1416..fa1aca4360f26 100644
--- a/pkgs/applications/blockchains/go-ethereum/default.nix
+++ b/pkgs/applications/blockchains/go-ethereum/default.nix
@@ -9,13 +9,13 @@ let
 
 in buildGoModule rec {
   pname = "go-ethereum";
-  version = "1.10.21";
+  version = "1.10.23";
 
   src = fetchFromGitHub {
     owner = "ethereum";
     repo = pname;
     rev = "v${version}";
-    sha256 = "sha256-qaM1I3ytMZN+5v/Oj47n3Oc21Jk7DtjfWA/xDprbn/M=";
+    sha256 = "sha256-1fEmtbHKrjuyIVrGr/vTudZ99onkNjEMvyBJt4I8KK4=";
   };
 
   vendorSha256 = "sha256-Dj+xN8lr98LJyYr2FwJ7yUIJkUeUrr1fkcbj4hShJI0=";
@@ -46,6 +46,9 @@ in buildGoModule rec {
     "cmd/utils"
   ];
 
+  # Following upstream: https://github.com/ethereum/go-ethereum/blob/v1.10.23/build/ci.go#L218
+  tags = [ "urfave_cli_no_docs" ];
+
   # Fix for usb-related segmentation faults on darwin
   propagatedBuildInputs =
     lib.optionals stdenv.isDarwin [ libobjc IOKit ];