about summary refs log tree commit diff
path: root/pkgs/applications/altcoins
diff options
context:
space:
mode:
authorWei Tang <hi@that.world>2017-08-29 19:26:34 +0800
committerWei Tang <hi@that.world>2017-08-29 19:26:34 +0800
commit6da8f82d6bcf572ff312a26fa2157c241139fe74 (patch)
treee2b75fdf81be2864b7f094946721e8427b5fa8ce /pkgs/applications/altcoins
parentac279998af6dc0a4346ad8bb11aeace2f8602843 (diff)
downloadnixlib-6da8f82d6bcf572ff312a26fa2157c241139fe74.tar
nixlib-6da8f82d6bcf572ff312a26fa2157c241139fe74.tar.gz
nixlib-6da8f82d6bcf572ff312a26fa2157c241139fe74.tar.bz2
nixlib-6da8f82d6bcf572ff312a26fa2157c241139fe74.tar.lz
nixlib-6da8f82d6bcf572ff312a26fa2157c241139fe74.tar.xz
nixlib-6da8f82d6bcf572ff312a26fa2157c241139fe74.tar.zst
nixlib-6da8f82d6bcf572ff312a26fa2157c241139fe74.zip
go-ethereum-classic: 3.5.0 -> 3.5.86
Diffstat (limited to 'pkgs/applications/altcoins')
-rw-r--r--pkgs/applications/altcoins/go-ethereum-classic/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/altcoins/go-ethereum-classic/default.nix b/pkgs/applications/altcoins/go-ethereum-classic/default.nix
index 3687905ae57a..37d6264d82f3 100644
--- a/pkgs/applications/altcoins/go-ethereum-classic/default.nix
+++ b/pkgs/applications/altcoins/go-ethereum-classic/default.nix
@@ -2,16 +2,15 @@
 
 buildGoPackage rec {
   name = "go-ethereum-classic-${version}";
-  version = "3.5.0";
-  rev = "402c1700fbefb9512e444b32fe12c2d674638ddb";
+  version = "3.5.86";
 
   goPackagePath = "github.com/ethereumproject/go-ethereum";
   subPackages = [ "cmd/evm" "cmd/geth" ];
 
   src = fetchgit {
-    inherit rev;
+    rev = "v${version}";
     url = "https://github.com/ethereumproject/go-ethereum";
-    sha256 = "15wji12wqcrgsb1glwwz4jv7rsas71bbxh7750iv2phn7jivm0fi";
+    sha256 = "1k59hl3qvx4422zqlp259566fnxq5bs67jhm0v6a1zfr1k8iqzwh";
   };
 
   goDeps = ./deps.nix;
@@ -20,5 +19,6 @@ buildGoPackage rec {
     description = "Golang implementation of Ethereum Classic";
     homepage = https://github.com/ethereumproject/go-ethereum;
     license = with lib.licenses; [ lgpl3 gpl3 ];
+    maintainers = with lib.maintainers; [ sorpaas ];
   };
 }