2017-03-19 11:40:52 +00:00
|
|
|
{ stdenv, lib, fetchurl, fetchpatch, tzdata, iana-etc, libcCross
|
2015-08-19 23:49:49 +01:00
|
|
|
, 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 {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "go";
|
2020-11-19 07:04:00 +00:00
|
|
|
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 {
|
2016-12-29 14:32:19 +00:00
|
|
|
url = "https://github.com/golang/go/archive/${revision}.tar.gz";
|
2020-11-19 07:04:00 +00:00
|
|
|
sha256 = "1zdyf883awaqdzm4r3fs76nbpiqx3iswl2p4qxclw2sl5vvynas5";
|
2015-05-18 17:59:46 +01:00
|
|
|
};
|
2015-01-06 07:18:55 +00:00
|
|
|
|
2015-08-19 23:49:49 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ pcre ];
|
2020-03-27 07:28:40 +00:00
|
|
|
depsTargetTargetPropagated = lib.optional stdenv.isDarwin Security;
|
2015-01-06 07:18:55 +00:00
|
|
|
|
2016-02-26 17:38:15 +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-15 23:34:59 +00:00
|
|
|
|
2015-01-06 07:18:55 +00:00
|
|
|
cd go
|
|
|
|
patchShebangs ./ # replace /bin/bash
|
|
|
|
|
2017-03-19 11:40:52 +00:00
|
|
|
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 ''
|
2019-12-05 02:45:41 +00:00
|
|
|
# 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
|
2016-04-14 17:00:39 +01:00
|
|
|
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"
|
2018-08-20 20:11:29 +01:00
|
|
|
else if stdenv.hostPlatform.system == "i686-linux" then "386"
|
|
|
|
else if stdenv.hostPlatform.system == "x86_64-linux" then "amd64"
|
treewide: isArm -> isAarch32
Following legacy packing conventions, `isArm` was defined just for
32-bit ARM instruction set. This is confusing to non packagers though,
because Aarch64 is an ARM instruction set.
The official ARM overview for ARMv8[1] is surprisingly not confusing,
given the overall state of affairs for ARM naming conventions, and
offers us a solution. It divides the nomenclature into three levels:
```
ISA: ARMv8 {-A, -R, -M}
/ \
Mode: Aarch32 Aarch64
| / \
Encoding: A64 A32 T32
```
At the top is the overall v8 instruction set archicture. Second are the
two modes, defined by bitwidth but differing in other semantics too, and
buttom are the encodings, (hopefully?) isomorphic if they encode the
same mode.
The 32 bit encodings are mostly backwards compatible with previous
non-Thumb and Thumb encodings, and if so we can pun the mode names to
instead mean "sets of compatable or isomorphic encodings", and then
voilà we have nice names for 32-bit and 64-bit arm instruction sets
which do not use the word ARM so as to not confused either laymen or
experienced ARM packages.
[1]: https://developer.arm.com/products/architecture/a-profile
2018-03-20 02:41:06 +00:00
|
|
|
else if stdenv.isAarch32 then "arm"
|
2015-01-06 07:18:55 +00:00
|
|
|
else throw "Unsupported system";
|
2018-08-20 20:11:29 +01:00
|
|
|
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
|
2016-08-28 13:26:19 +01:00
|
|
|
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; {
|
2015-02-09 09:15:02 +00:00
|
|
|
branch = "1.4";
|
2020-04-01 02:11:51 +01:00
|
|
|
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;
|
2019-01-26 10:01:09 +00:00
|
|
|
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
|
|
|
};
|
|
|
|
}
|