Files
2026-04-11 16:34:37 +02:00

59 lines
1.4 KiB
Nix

{
lib,
buildGoModule,
fetchFromGitHub,
makeWrapper,
go,
}:
buildGoModule (finalAttrs: {
pname = "gotools";
version = "0.44.0";
# using GitHub instead of https://go.googlesource.com/tools because Gitiles UI is too basic to browse
src = fetchFromGitHub {
owner = "golang";
repo = "tools";
tag = "v${finalAttrs.version}";
hash = "sha256-F9DyZAZdrKCrCIB6FZP0KrOwPNRLk0ZQoNMHGMHd0UY=";
};
allowGoReference = true;
doCheck = false;
vendorHash = "sha256-HpWkPsRJ0vCqJi9LoZcVbzeoPQ2B9ftZwuS1r47W7Sc=";
nativeBuildInputs = [ makeWrapper ];
postPatch = ''
# The gopls folder contains a Go submodule which causes a build failure
# and lives in its own package named gopls.
rm -r gopls
'';
# 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
'';
postFixup = ''
wrapProgram $out/bin/goimports \
--suffix PATH : ${lib.makeBinPath [ go ]}
'';
meta = {
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 = lib.licenses.bsd3;
maintainers = with lib.maintainers; [
SuperSandro2000
techknowlogick
];
};
})