go-ethereum-classic: 3.5.0 -> 3.5.86

This commit is contained in:
Wei Tang 2017-08-29 19:26:34 +08:00
parent ac279998af
commit 6da8f82d6b

View file

@ -2,16 +2,15 @@
buildGoPackage rec { buildGoPackage rec {
name = "go-ethereum-classic-${version}"; name = "go-ethereum-classic-${version}";
version = "3.5.0"; version = "3.5.86";
rev = "402c1700fbefb9512e444b32fe12c2d674638ddb";
goPackagePath = "github.com/ethereumproject/go-ethereum"; goPackagePath = "github.com/ethereumproject/go-ethereum";
subPackages = [ "cmd/evm" "cmd/geth" ]; subPackages = [ "cmd/evm" "cmd/geth" ];
src = fetchgit { src = fetchgit {
inherit rev; rev = "v${version}";
url = "https://github.com/ethereumproject/go-ethereum"; url = "https://github.com/ethereumproject/go-ethereum";
sha256 = "15wji12wqcrgsb1glwwz4jv7rsas71bbxh7750iv2phn7jivm0fi"; sha256 = "1k59hl3qvx4422zqlp259566fnxq5bs67jhm0v6a1zfr1k8iqzwh";
}; };
goDeps = ./deps.nix; goDeps = ./deps.nix;
@ -20,5 +19,6 @@ buildGoPackage rec {
description = "Golang implementation of Ethereum Classic"; description = "Golang implementation of Ethereum Classic";
homepage = https://github.com/ethereumproject/go-ethereum; homepage = https://github.com/ethereumproject/go-ethereum;
license = with lib.licenses; [ lgpl3 gpl3 ]; license = with lib.licenses; [ lgpl3 gpl3 ];
maintainers = with lib.maintainers; [ sorpaas ];
}; };
} }