nixpkgs/pkgs/development/compilers/go/1.4.nix

95 lines
2.8 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchurl, fetchpatch, tzdata, iana-etc, libcCross
, pkgconfig
, pcre
, Security }:
2015-01-06 07:18:55 +00:00
let
2019-08-13 22:52:01 +01:00
libc = if stdenv ? cross then libcCross else stdenv.cc.libc;
2015-01-06 07:18:55 +00:00
in
2015-05-18 17:59:46 +01:00
stdenv.mkDerivation rec {
pname = "go";
version = "1.4-bootstrap-${builtins.substring 0 7 revision}";
revision = "bdd4b9503e47c2c38a9d0a9bb2f5d95ec5ff8ef6";
2015-01-06 07:18:55 +00:00
2015-05-18 17:59:46 +01:00
src = fetchurl {
url = "https://github.com/golang/go/archive/${revision}.tar.gz";
sha256 = "1zdyf883awaqdzm4r3fs76nbpiqx3iswl2p4qxclw2sl5vvynas5";
2015-05-18 17:59:46 +01:00
};
2015-01-06 07:18:55 +00:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ pcre ];
depsTargetTargetPropagated = lib.optional stdenv.isDarwin Security;
2015-01-06 07:18:55 +00:00
hardeningDisable = [ "all" ];
2015-12-23 01:59:47 +00:00
2017-10-30 18:45:17 +00:00
# The tests try to do stuff with 127.0.0.1 and localhost
__darwinAllowLocalNetworking = true;
2015-01-06 07:18:55 +00:00
# I'm not sure what go wants from its 'src', but the go installation manual
# describes an installation keeping the src.
preUnpack = ''
mkdir -p $out/share
cd $out/share
'';
prePatch = ''
# Ensure that the source directory is named go
cd ..
if [ ! -d go ]; then
mv * go
fi
2015-01-06 07:18:55 +00:00
cd go
patchShebangs ./ # replace /bin/bash
sed -i 's,/etc/protocols,${iana-etc}/etc/protocols,' src/net/lookup_unix.go
2015-01-06 07:18:55 +00:00
'' + lib.optionalString stdenv.isLinux ''
# prepend the nix path to the zoneinfo files but also leave the original value for static binaries
# that run outside a nix server
sed -i 's,\"/usr/share/zoneinfo/,"${tzdata}/share/zoneinfo/\"\,\n\t&,' src/time/zoneinfo_unix.go
2015-08-19 22:54:16 +01:00
# Find the loader dynamically
LOADER="$(find ${lib.getLib libc}/lib -name ld-linux\* | head -n 1)"
2015-08-19 22:54:16 +01:00
# Replace references to the loader
find src/cmd -name asm.c -exec sed -i "s,/lib/ld-linux.*\.so\.[0-9],$LOADER," {} \;
2015-01-06 07:18:55 +00:00
'';
2015-05-18 17:59:46 +01:00
patches = [
2015-08-19 20:57:41 +01:00
./remove-tools-1.4.patch
2015-05-18 17:59:46 +01:00
];
2015-01-06 07:18:55 +00:00
GOOS = if stdenv.isDarwin then "darwin" else "linux";
GOARCH = if stdenv.isDarwin then "amd64"
else if stdenv.hostPlatform.system == "i686-linux" then "386"
else if stdenv.hostPlatform.system == "x86_64-linux" then "amd64"
else if stdenv.isAarch32 then "arm"
2015-01-06 07:18:55 +00:00
else throw "Unsupported system";
GOARM = stdenv.lib.optionalString (stdenv.hostPlatform.system == "armv5tel-linux") "5";
2015-01-06 07:18:55 +00:00
GO386 = 387; # from Arch: don't assume sse2 on i686
CGO_ENABLED = 0;
2015-03-03 04:20:35 +00:00
# The go build actually checks for CC=*/clang and does something different, so we don't
# just want the generic `cc` here.
CC = if stdenv.isDarwin then "clang" else "cc";
2015-01-06 07:18:55 +00:00
installPhase = ''
mkdir -p "$out/bin"
export GOROOT="$(pwd)/"
export GOBIN="$out/bin"
export PATH="$GOBIN:$PATH"
cd ./src
./all.bash
'';
2015-06-10 12:00:11 +01:00
meta = with stdenv.lib; {
branch = "1.4";
homepage = "http://golang.org/";
2015-01-06 07:18:55 +00:00
description = "The Go Programming language";
2015-06-10 12:00:11 +01:00
license = licenses.bsd3;
maintainers = with maintainers; [ cstrahan ];
2015-06-10 12:00:11 +01:00
platforms = platforms.linux ++ platforms.darwin;
2015-01-06 07:18:55 +00:00
};
}