buildGoPackage: default to 1.10 (default go version)

This otherwise sometimes caused go builds to fail that were trying to
build C ffi code.

(expected type uint32, got type uint32 or similar)
This commit is contained in:
Robin Gloster 2018-04-01 17:26:32 +02:00
parent ce0dab5be2
commit 5b01b0d316
No known key found for this signature in database
GPG key ID: D5C458DF6DD97EDF

View file

@ -12101,8 +12101,11 @@ with pkgs;
buildGo19Package = callPackage ../development/go-modules/generic {
go = go_1_9;
};
buildGo110Package = callPackage ../development/go-modules/generic {
go = go_1_10;
};
buildGoPackage = buildGo19Package;
buildGoPackage = buildGo110Package;
go2nix = callPackage ../development/tools/go2nix { };