about summary refs log tree commit diff
path: root/pkgs/applications/altcoins
diff options
context:
space:
mode:
authorxrelkd <46590321+xrelkd@users.noreply.github.com>2019-07-11 02:09:35 +0800
committerxrelkd <46590321+xrelkd@users.noreply.github.com>2019-07-11 02:12:59 +0800
commit935e1dbe69cbb40120ecb34217fb04745e92f25f (patch)
tree2c08d449ab3303f7102261c5d8f756207dc48014 /pkgs/applications/altcoins
parent4a633b56182bd5d5de14cb0356ec7c9e0785f574 (diff)
downloadnixlib-935e1dbe69cbb40120ecb34217fb04745e92f25f.tar
nixlib-935e1dbe69cbb40120ecb34217fb04745e92f25f.tar.gz
nixlib-935e1dbe69cbb40120ecb34217fb04745e92f25f.tar.bz2
nixlib-935e1dbe69cbb40120ecb34217fb04745e92f25f.tar.lz
nixlib-935e1dbe69cbb40120ecb34217fb04745e92f25f.tar.xz
nixlib-935e1dbe69cbb40120ecb34217fb04745e92f25f.tar.zst
nixlib-935e1dbe69cbb40120ecb34217fb04745e92f25f.zip
go-ethereum: 1.8.27 -> 1.9.0
Diffstat (limited to 'pkgs/applications/altcoins')
-rw-r--r--pkgs/applications/altcoins/go-ethereum.nix17
1 files changed, 3 insertions, 14 deletions
diff --git a/pkgs/applications/altcoins/go-ethereum.nix b/pkgs/applications/altcoins/go-ethereum.nix
index 1e16eb78cef1..cbef20c83d5e 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,22 +13,11 @@ 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; {