go_bootstrap: remove top-level attribute (#113113)

this package should only be used internally for go_*
This commit is contained in:
zowoq
2021-02-15 10:06:35 -08:00
committed by GitHub
parent 274109a8d6
commit d9be3c767c
5 changed files with 35 additions and 16 deletions
@@ -0,0 +1,17 @@
{ stdenv, srcOnly, fetchurl, callPackage, Security }:
let
go_bootstrap = if stdenv.isAarch64 then
srcOnly {
name = "go-1.8-linux-arm64-bootstrap";
src = fetchurl {
url = "https://cache.xor.us/go-1.8-linux-arm64-bootstrap.tar.xz";
sha256 = "0sk6g03x9gbxk2k1djnrgy8rzw1zc5f6ssw0hbxk6kjr85lpmld6";
};
}
else
callPackage ./1.4.nix {
inherit Security;
};
in
go_bootstrap