about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorCharles Strahan <charles@cstrahan.com>2016-04-23 00:39:17 -0400
committerCharles Strahan <charles@cstrahan.com>2016-04-23 00:39:17 -0400
commit0657ddca952ea24a566e581f5c80e2172c6c6e61 (patch)
treed8162c6e41676fda9333f42428720278678f3267 /pkgs
parentd3754d34824810d80c8e05767f05c85855883a00 (diff)
downloadnixlib-0657ddca952ea24a566e581f5c80e2172c6c6e61.tar
nixlib-0657ddca952ea24a566e581f5c80e2172c6c6e61.tar.gz
nixlib-0657ddca952ea24a566e581f5c80e2172c6c6e61.tar.bz2
nixlib-0657ddca952ea24a566e581f5c80e2172c6c6e61.tar.lz
nixlib-0657ddca952ea24a566e581f5c80e2172c6c6e61.tar.xz
nixlib-0657ddca952ea24a566e581f5c80e2172c6c6e61.tar.zst
nixlib-0657ddca952ea24a566e581f5c80e2172c6c6e61.zip
go: 1.6 -> 1.6.2
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/compilers/go/1.6.nix10
1 files changed, 2 insertions, 8 deletions
diff --git a/pkgs/development/compilers/go/1.6.nix b/pkgs/development/compilers/go/1.6.nix
index d9924c567442..4efcdb53f476 100644
--- a/pkgs/development/compilers/go/1.6.nix
+++ b/pkgs/development/compilers/go/1.6.nix
@@ -15,11 +15,11 @@ in
 
 stdenv.mkDerivation rec {
   name = "go-${version}";
-  version = "1.6";
+  version = "1.6.2";
 
   src = fetchurl {
     url = "https://github.com/golang/go/archive/go${version}.tar.gz";
-    sha256 = "04g7w34qamgy9gqpy75xm03s8xbbslv1735iv1a06z8sphpkgs7m";
+    sha256 = "17sfhg3xfnakk666wlsbhxp4vbn19hlywf5cn1zfcd4zqkcyx30h";
   };
 
   # perl is used for testing go vet
@@ -96,12 +96,6 @@ stdenv.mkDerivation rec {
 
   patches = [
     ./remove-tools-1.5.patch
-    # Fix bug when using musl (see https://github.com/golang/go/issues/14476)
-    # Should be fixed by go 1.6.1
-    (fetchpatch {
-      url = "https://github.com/golang/go/commit/1439158120742e5f41825de90a76b680da64bf76.patch";
-      sha256 = "0yixpbx056ns5wgd3f4absgiyc2ymmqk8mkhhz5ja90dvilzxcwd";
-    })
   ]
   # -ldflags=-s is required to compile on Darwin, see
   # https://github.com/golang/go/issues/11994