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