Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

go_1_9: 1.9.4 -> 1.9.5

This is a maintenance bump of the golang 1.9 version.

Within the updates are a few bug fixes including an (extended?)
fix for CVE-2018-7187 [1].

The complete changelog is available at the golang GitHub project [2].

[1] https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-7187
[2] https://github.com/golang/go/issues?q=milestone%3AGo1.9.5

(cherry picked from commit e9f74b91d6f0d6997ee25cae6d100e6ba4b3a6eb)

authored by Andreas Rammhold and committed by Jörg Thalheim 4e9fa5cf 357efa30

Changed files
+2 -2
pkgs
development
compilers
go
+2 -2
pkgs/development/compilers/go/1.9.nix
··· 25 25 26 26 stdenv.mkDerivation rec { 27 27 name = "go-${version}"; 28 - version = "1.9.4"; 28 + version = "1.9.5"; 29 29 30 30 src = fetchFromGitHub { 31 31 owner = "golang"; 32 32 repo = "go"; 33 33 rev = "go${version}"; 34 - sha256 = "15d9lfiy1cjfz6nqnig5884ykqckx58cynd1bva1xna7bwcwwp2r"; 34 + sha256 = "15dx1b71xv7b265gqk9nv02pirggpw7d83apikhrza2qkj64ydd0"; 35 35 }; 36 36 37 37 # perl is used for testing go vet