about summary refs log tree commit diff
path: root/pkgs/applications/altcoins
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2019-07-11 09:40:10 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2019-07-11 09:40:10 +0200
commit22cb7f25f2f939a5e38f5e0c0920a743c37a9480 (patch)
tree0f40b2088d8ffcaab6d43cda6a4ee92931a35a83 /pkgs/applications/altcoins
parent6049c39bdb3d8bfc01e2a86d2fc6ef6e46f9b0be (diff)
parent08b828d1c5169c08bce148df53cb1215b58e64d0 (diff)
downloadnixlib-22cb7f25f2f939a5e38f5e0c0920a743c37a9480.tar
nixlib-22cb7f25f2f939a5e38f5e0c0920a743c37a9480.tar.gz
nixlib-22cb7f25f2f939a5e38f5e0c0920a743c37a9480.tar.bz2
nixlib-22cb7f25f2f939a5e38f5e0c0920a743c37a9480.tar.lz
nixlib-22cb7f25f2f939a5e38f5e0c0920a743c37a9480.tar.xz
nixlib-22cb7f25f2f939a5e38f5e0c0920a743c37a9480.tar.zst
nixlib-22cb7f25f2f939a5e38f5e0c0920a743c37a9480.zip
Merge master into staging-next
Diffstat (limited to 'pkgs/applications/altcoins')
-rw-r--r--pkgs/applications/altcoins/go-ethereum.nix21
1 files changed, 5 insertions, 16 deletions
diff --git a/pkgs/applications/altcoins/go-ethereum.nix b/pkgs/applications/altcoins/go-ethereum.nix
index 1e16eb78cef1..cf0261e01c43 100644
--- a/pkgs/applications/altcoins/go-ethereum.nix
+++ b/pkgs/applications/altcoins/go-ethereum.nix
@@ -1,8 +1,8 @@
-{ stdenv, buildGoPackage, fetchFromGitHub, libobjc, IOKit, fetchpatch }:
+{ stdenv, buildGoPackage, fetchFromGitHub, libobjc, IOKit }:
 
 buildGoPackage rec {
   pname = "go-ethereum";
-  version = "1.8.27";
+  version = "1.9.0";
 
   goPackagePath = "github.com/ethereum/go-ethereum";
 
@@ -13,28 +13,17 @@ buildGoPackage rec {
   # Fixes Cgo related build failures (see https://github.com/NixOS/nixpkgs/issues/25959 )
   hardeningDisable = [ "fortify" ];
 
-  # Apply ethereum/go-ethereum#19183 to fix the aarch64 build failure.
-  #
-  # TODO Remove this patch when upstream (https://github.com/ethereum/go-ethereum)
-  # fix this problem in the future release.
-  patches = [
-    (fetchpatch {
-      url = "https://github.com/ethereum/go-ethereum/commit/39bd2609.patch";
-      sha256 = "1a362hzvcjk505hicv25kziy3c6s5an4j7rk4jibcxwgvygb3mz5";
-    })
- ];
-
   src = fetchFromGitHub {
     owner = "ethereum";
     repo = pname;
     rev = "v${version}";
-    sha256 = "1640y7lqy7bvjjgx6wp0cnbw632ls5fj4ixclr819lfz4p5dfhx1";
+    sha256 = "03gkrvps1syvyjna7769n4j3mlpxcgdj461gzds2l90k02ajvh7x";
   };
 
   meta = with stdenv.lib; {
-    homepage = https://ethereum.github.io/go-ethereum/;
+    homepage = "https://geth.ethereum.org/";
     description = "Official golang implementation of the Ethereum protocol";
     license = with licenses; [ lgpl3 gpl3 ];
-    maintainers = with maintainers; [ adisbladis asymmetric lionello ];
+    maintainers = with maintainers; [ adisbladis asymmetric lionello xrelkd ];
   };
 }