Updating go 1.1beta2 to 1.1rc1

This commit is contained in:
Lluís Batlle i Rossell 2013-05-02 13:17:01 +04:00
parent 28f87c0eb5
commit 290bc17ff6

View File

@ -7,11 +7,11 @@ let
in in
stdenv.mkDerivation { stdenv.mkDerivation {
name = "go-1.1beta2"; name = "go-1.1rc1";
src = fetchurl { src = fetchurl {
url = http://go.googlecode.com/files/go1.1beta2.src.tar.gz; url = http://go.googlecode.com/files/go1.1rc1.src.tar.gz;
sha1 = "70d7642a6ea065a23458b9ea28e370b19912e52d"; sha1 = "c999c36e7bb5c9ef05d309b0bb4275feb62c44e3";
}; };
buildInputs = [ bison glibc bash makeWrapper ]; buildInputs = [ bison glibc bash makeWrapper ];
@ -50,7 +50,7 @@ stdenv.mkDerivation {
# Disable the hostname test # Disable the hostname test
sed -i '/TestHostname/areturn' src/pkg/os/os_test.go sed -i '/TestHostname/areturn' src/pkg/os/os_test.go
# Disable a failing icmp test # Disable a failing icmp test
sed -i '/ip[46]:icmp.*nil/d' src/pkg/net/ipraw_test.go sed -i '/ip[46]:.*icmp.*nil/d' src/pkg/net/ipraw_test.go
''; '';
patches = [ ./cacert.patch ]; patches = [ ./cacert.patch ];