From 0651be3582e881efcbaff868207600b38a590811 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Bola=C3=B1os?= Date: Wed, 4 Sep 2024 17:50:47 +0200 Subject: [PATCH] geth: 1.14.7 -> 1.14.8 (#544) The biggest change is that the p2psim package got dropped --- pkgs/geth/default.nix | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/pkgs/geth/default.nix b/pkgs/geth/default.nix index fc3d4022..7e002357 100644 --- a/pkgs/geth/default.nix +++ b/pkgs/geth/default.nix @@ -16,23 +16,22 @@ "ethkey" "evm" "geth" - "p2psim" "rlpdump" ]; in buildGoModule rec { pname = "geth"; - version = "1.14.7"; + version = "1.14.8"; src = fetchFromGitHub { owner = "ethereum"; repo = "go-ethereum"; rev = "v${version}"; - hash = "sha256-axllyeumgR6DJ5NXGBVanLcjfeDEHhBTRI9eiJUpFw4="; + hash = "sha256-y831v6ar1RdDvGQMZf2lZKgq2IQzAAQrNwDCL0xbj24="; }; proxyVendor = true; - vendorHash = "sha256-OnVHsJUDezTH1NFvDRO7lAtouSaBDRvhTbFdhloQLAs="; + vendorHash = "sha256-CLGf64Fftu4u8Vaj66Q4xuRKBEMNZmpltUyaUMVyVJk="; ldflags = ["-s" "-w"]; @@ -56,7 +55,6 @@ in "cmd/ethkey" "cmd/evm" "cmd/geth" - "cmd/p2psim" "cmd/rlpdump" "cmd/utils" ];