2019-03-08 23:14:33 +00:00
|
|
|
{ stdenv, go, buildGoModule, fetchgit }:
|
2016-06-06 01:28:52 +01:00
|
|
|
|
2019-03-08 23:14:33 +00:00
|
|
|
buildGoModule rec {
|
2018-07-21 11:30:02 +01:00
|
|
|
name = "gotools-unstable-${version}";
|
2019-06-21 11:38:42 +01:00
|
|
|
version = "2019-07-06";
|
|
|
|
rev = "72ffa07ba3db8d09f5215feec0f89464f3028f8e";
|
2016-06-06 01:28:52 +01:00
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
inherit rev;
|
|
|
|
url = "https://go.googlesource.com/tools";
|
2019-06-21 11:38:42 +01:00
|
|
|
sha256 = "0c0s5aiwj807vxfzwrah32spwq8cnxvy0j117i5cbsqw2df80pgv";
|
2016-06-06 01:28:52 +01:00
|
|
|
};
|
|
|
|
|
2019-07-05 12:11:13 +01:00
|
|
|
# Build of golang.org/x/tools/gopls fails with:
|
|
|
|
# can't load package: package golang.org/x/tools/gopls: unknown import path "golang.org/x/tools/gopls": cannot find module providing package golang.org/x/tools/gopls
|
|
|
|
# That is most probably caused by golang.org/x/tools/gopls containing a separate Go module.
|
|
|
|
# In order to fix this, we simply remove the module.
|
|
|
|
# Note that build of golang.org/x/tools/cmd/gopls provides identical binary as golang.org/x/tools/gopls.
|
|
|
|
# See https://github.com/NixOS/nixpkgs/pull/64335.
|
|
|
|
postPatch = ''
|
|
|
|
rm -rf gopls
|
|
|
|
'';
|
|
|
|
|
2019-06-21 11:38:42 +01:00
|
|
|
modSha256 = "16nkrpki9fnxsrxxxs9ljz49plcz393z0sqq2knkk30pmncpwd3q";
|
2016-06-06 01:28:52 +01:00
|
|
|
|
2019-03-22 03:40:07 +00:00
|
|
|
postConfigure = ''
|
2016-06-06 01:28:52 +01:00
|
|
|
# Make the builtin tools available here
|
2019-03-08 23:14:33 +00:00
|
|
|
mkdir -p $out/bin
|
2016-06-06 01:28:52 +01:00
|
|
|
eval $(go env | grep GOTOOLDIR)
|
|
|
|
find $GOTOOLDIR -type f | while read x; do
|
2019-03-08 23:14:33 +00:00
|
|
|
ln -sv "$x" "$out/bin"
|
2016-06-06 01:28:52 +01:00
|
|
|
done
|
2019-03-08 23:14:33 +00:00
|
|
|
export GOTOOLDIR=$out/bin
|
2016-06-06 01:28:52 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
excludedPackages = "\\("
|
|
|
|
+ stdenv.lib.concatStringsSep "\\|" ([ "testdata" ] ++ stdenv.lib.optionals (stdenv.lib.versionAtLeast go.meta.branch "1.5") [ "vet" "cover" ])
|
|
|
|
+ "\\)";
|
|
|
|
|
|
|
|
# Set GOTOOLDIR for derivations adding this to buildInputs
|
|
|
|
postInstall = ''
|
2019-03-08 23:14:33 +00:00
|
|
|
mkdir -p $out/nix-support
|
|
|
|
substituteAll ${../../go-modules/tools/setup-hook.sh} $out/nix-support/setup-hook.tmp
|
|
|
|
cat $out/nix-support/setup-hook.tmp >> $out/nix-support/setup-hook
|
|
|
|
rm $out/nix-support/setup-hook.tmp
|
2016-06-06 01:28:52 +01:00
|
|
|
'';
|
2019-03-08 23:14:33 +00:00
|
|
|
|
|
|
|
# Do not copy this without a good reason for enabling
|
|
|
|
# In this case tools is heavily coupled with go itself and embeds paths.
|
|
|
|
allowGoReference = true;
|
2016-06-06 01:28:52 +01:00
|
|
|
}
|