2024-06-25 13:53:01 +00:00
|
|
|
{ lib, stdenv, fetchurl, version, hashes, autoPatchelfHook }:
|
|
|
|
let
|
|
|
|
toGoKernel = platform:
|
|
|
|
if platform.isDarwin then "darwin"
|
|
|
|
else platform.parsed.kernel.name;
|
|
|
|
|
|
|
|
toGoCPU = platform: {
|
|
|
|
"i686" = "386";
|
|
|
|
"x86_64" = "amd64";
|
|
|
|
"aarch64" = "arm64";
|
|
|
|
"armv6l" = "armv6l";
|
|
|
|
"armv7l" = "armv6l";
|
|
|
|
"powerpc64le" = "ppc64le";
|
2024-01-25 14:53:22 +00:00
|
|
|
"riscv64" = "riscv64";
|
2024-06-25 13:53:01 +00:00
|
|
|
}.${platform.parsed.cpu.name} or (throw "Unsupported CPU ${platform.parsed.cpu.name}");
|
|
|
|
|
|
|
|
toGoPlatform = platform: "${toGoKernel platform}-${toGoCPU platform}";
|
|
|
|
|
|
|
|
platform = toGoPlatform stdenv.hostPlatform;
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "go-${version}-${platform}-bootstrap";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://go.dev/dl/go${version}.${platform}.tar.gz";
|
|
|
|
sha256 = hashes.${platform} or (throw "Missing Go bootstrap hash for platform ${platform}");
|
|
|
|
};
|
|
|
|
|
|
|
|
#nativeBuildInputs = lib.optionals stdenv.isLinux [ autoPatchelfHook ];
|
|
|
|
|
|
|
|
# We must preserve the signature on Darwin
|
|
|
|
dontStrip = stdenv.hostPlatform.isDarwin;
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/share/go $out/bin
|
|
|
|
cp -r . $out/share/go
|
|
|
|
ln -s $out/share/go/bin/go $out/bin/go
|
|
|
|
runHook postInstall
|
|
|
|
'';
|
|
|
|
}
|