Skip to content

Commit

Permalink
buildGoPackage: default to 1.10 (default go version)
Browse files Browse the repository at this point in the history
This otherwise sometimes caused go builds to fail that were trying to
build C ffi code.

(expected type uint32, got type uint32 or similar)
  • Loading branch information
globin committed Apr 1, 2018
1 parent ce0dab5 commit 5b01b0d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pkgs/top-level/all-packages.nix
Expand Up @@ -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 { };

Expand Down

0 comments on commit 5b01b0d

Please sign in to comment.