Merge pull request #18014 from zimbatm/buildGoPackage-1.7

Build go package 1.7
This commit is contained in:
Robin Gloster 2016-08-26 15:41:08 +00:00 committed by GitHub
commit fee9b3410e
2 changed files with 6 additions and 1 deletions

View File

@ -21,5 +21,6 @@ buildGoPackage rec {
license = "MIT";
maintainers = with stdenv.lib.maintainers; [ qknight ];
meta.platforms = stdenv.lib.platforms.linux;
broken = true;
};
}

View File

@ -10009,7 +10009,11 @@ in
go = go_1_6;
};
buildGoPackage = buildGo16Package;
buildGo17Package = callPackage ../development/go-modules/generic {
go = go_1_7;
};
buildGoPackage = buildGo17Package;
go2nix = callPackage ../development/tools/go2nix { };