Merge pull request #28681 from sorpaas/geth-etc-update

go-ethereum-classic: 3.5.0 -> 3.5.86

authored by Jörg Thalheim and committed by GitHub 029e0f24 10f5aad6

+4 -4
+4 -4
pkgs/applications/altcoins/go-ethereum-classic/default.nix
··· 2 2 3 3 buildGoPackage rec { 4 4 name = "go-ethereum-classic-${version}"; 5 - version = "3.5.0"; 6 - rev = "402c1700fbefb9512e444b32fe12c2d674638ddb"; 5 + version = "3.5.86"; 7 6 8 7 goPackagePath = "github.com/ethereumproject/go-ethereum"; 9 8 subPackages = [ "cmd/evm" "cmd/geth" ]; 10 9 11 10 src = fetchgit { 12 - inherit rev; 11 + rev = "v${version}"; 13 12 url = "https://github.com/ethereumproject/go-ethereum"; 14 - sha256 = "15wji12wqcrgsb1glwwz4jv7rsas71bbxh7750iv2phn7jivm0fi"; 13 + sha256 = "1k59hl3qvx4422zqlp259566fnxq5bs67jhm0v6a1zfr1k8iqzwh"; 15 14 }; 16 15 17 16 goDeps = ./deps.nix; ··· 20 19 description = "Golang implementation of Ethereum Classic"; 21 20 homepage = https://github.com/ethereumproject/go-ethereum; 22 21 license = with lib.licenses; [ lgpl3 gpl3 ]; 22 + maintainers = with lib.maintainers; [ sorpaas ]; 23 23 }; 24 24 }