about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authoradisbladis <adisbladis@gmail.com>2018-10-14 13:30:48 +0800
committeradisbladis <adisbladis@gmail.com>2018-10-14 13:30:48 +0800
commit411044a934a9eb284b0a61b6eb873de6f2480ead (patch)
tree005fb125b39166e43c63bf4ac8c7231b087de151 /pkgs
parent00d7ce7ef1a8e90a108f3c39278e3ac2ea587ffb (diff)
downloadnixlib-411044a934a9eb284b0a61b6eb873de6f2480ead.tar
nixlib-411044a934a9eb284b0a61b6eb873de6f2480ead.tar.gz
nixlib-411044a934a9eb284b0a61b6eb873de6f2480ead.tar.bz2
nixlib-411044a934a9eb284b0a61b6eb873de6f2480ead.tar.lz
nixlib-411044a934a9eb284b0a61b6eb873de6f2480ead.tar.xz
nixlib-411044a934a9eb284b0a61b6eb873de6f2480ead.tar.zst
nixlib-411044a934a9eb284b0a61b6eb873de6f2480ead.zip
go-ethereum: 1.8.13 -> 1.8.17
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/altcoins/default.nix1
-rw-r--r--pkgs/applications/altcoins/go-ethereum.nix4
2 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/applications/altcoins/default.nix b/pkgs/applications/altcoins/default.nix
index e0a0dbef632c..87f5d0be68a3 100644
--- a/pkgs/applications/altcoins/default.nix
+++ b/pkgs/applications/altcoins/default.nix
@@ -53,7 +53,6 @@ rec {
 
   freicoin = callPackage ./freicoin.nix { boost = boost155; };
   go-ethereum = callPackage ./go-ethereum.nix {
-    buildGoPackage = buildGo110Package;
     inherit (darwin) libobjc;
     inherit (darwin.apple_sdk.frameworks) IOKit;
   };
diff --git a/pkgs/applications/altcoins/go-ethereum.nix b/pkgs/applications/altcoins/go-ethereum.nix
index 02e0412449a0..156cbc01a29b 100644
--- a/pkgs/applications/altcoins/go-ethereum.nix
+++ b/pkgs/applications/altcoins/go-ethereum.nix
@@ -2,7 +2,7 @@
 
 buildGoPackage rec {
   name = "go-ethereum-${version}";
-  version = "1.8.13";
+  version = "1.8.17";
   goPackagePath = "github.com/ethereum/go-ethereum";
 
   # Fix for usb-related segmentation faults on darwin
@@ -16,7 +16,7 @@ buildGoPackage rec {
     owner = "ethereum";
     repo = "go-ethereum";
     rev = "v${version}";
-    sha256 = "123jkyb293z7ww3sa9ji5rw7xd229isi03k4ayyh5p7rr0dg8al0";
+    sha256 = "0vm526gbyi8bygqwwki9hx7gf5g3xk2s1biyvwjidrydzj9i46zd";
   };
 
   meta = with stdenv.lib; {