mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
49 lines
1.2 KiB
Nix
49 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "gotools";
|
|
version = "0.25.0";
|
|
|
|
# using GitHub instead of https://go.googlesource.com/tools because Gitiles UI is to basic to browse
|
|
src = fetchFromGitHub {
|
|
owner = "golang";
|
|
repo = "tools";
|
|
rev = "v${version}";
|
|
hash = "sha256-iM6mGIQF+TOo1iV8hH9/4iOPdNiS9ymPmhslhDVnIIs=";
|
|
};
|
|
|
|
postPatch = ''
|
|
# The gopls folder contains a Go submodule which causes a build failure
|
|
# and lives in its own package named gopls.
|
|
rm -r gopls
|
|
'';
|
|
|
|
vendorHash = "sha256-9NSgtranuyRqtBq1oEnHCPIDFOIUJdVh5W/JufqN2Ko=";
|
|
|
|
doCheck = false;
|
|
|
|
# Set GOTOOLDIR for derivations adding this to buildInputs
|
|
postInstall = ''
|
|
mkdir -p $out/nix-support
|
|
substitute ${./setup-hook.sh} $out/nix-support/setup-hook \
|
|
--subst-var-by bin $out
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Additional tools for Go development";
|
|
longDescription = ''
|
|
This package contains tools like: godoc, goimports, callgraph, digraph, stringer or toolstash.
|
|
'';
|
|
homepage = "https://go.googlesource.com/tools";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [
|
|
SuperSandro2000
|
|
techknowlogick
|
|
];
|
|
};
|
|
}
|