go: remove ssl certs patches

Those are not needed since we now use a standard location to store our
bundles.

See bfebc7342e42ebe7a57c9e21b11ab19579189bfd

-24
-1
pkgs/development/compilers/go/1.4.nix
··· 84 84 ''; 85 85 86 86 patches = [ 87 - ./cacert-1.4.patch 88 87 ./remove-tools-1.4.patch 89 88 ]; 90 89
-1
pkgs/development/compilers/go/1.5.nix
··· 89 89 ''; 90 90 91 91 patches = [ 92 - ./cacert-1.5.patch 93 92 ./remove-tools-1.5.patch 94 93 ] 95 94 # -ldflags=-s is required to compile on Darwin, see
-14
pkgs/development/compilers/go/cacert-1.4.patch
··· 1 - Go comes with hardcoded cacert. We add the usual in NixOS, 2 - for easier NixOS life. 3 - 4 - diff -r 14854533dcc7 src/crypto/x509/root_unix.go 5 - --- a/src/crypto/x509/root_unix.go Thu Dec 11 11:27:56 2014 +1100 6 - +++ b/src/crypto/x509/root_unix.go Tue Jan 06 00:41:31 2015 -0600 7 - @@ -17,6 +17,7 @@ 8 - "/usr/local/share/certs/ca-root-nss.crt", // FreeBSD/DragonFly 9 - "/etc/pki/tls/cacert.pem", // OpenELEC 10 - "/etc/certs/ca-certificates.crt", // Solaris 11.2+ 11 - + "/etc/ssl/certs/ca-bundle.crt", // NixOS 12 - } 13 - 14 - // Possible directories with certificate files; stop after successfully
-8
pkgs/development/compilers/go/cacert-1.5.patch
··· 1 - --- a/src/crypto/x509/root_linux.go 2015-08-19 23:06:11.115133174 +0200 2 - +++ b/src/crypto/x509/root_linux.go 2015-08-19 23:07:04.238507161 +0200 3 - @@ -10,4 +10,5 @@ 4 - "/etc/pki/tls/certs/ca-bundle.crt", // Fedora/RHEL 5 - "/etc/ssl/ca-bundle.pem", // OpenSUSE 6 - "/etc/pki/tls/cacert.pem", // OpenELEC 7 - + "/etc/ssl/certs/ca-bundle.crt", // NixOS 8 - }