nixpkgs/pkgs/development/tools/buf/default.nix

73 lines
1.8 KiB
Nix
Raw Normal View History

2021-03-25 11:41:51 +01:00
{ lib
, buildGoModule
, fetchFromGitHub
, protobuf
, git
2021-03-25 11:41:51 +01:00
}:
buildGoModule rec {
pname = "buf";
version = "0.49.0";
2021-03-25 11:41:51 +01:00
src = fetchFromGitHub {
owner = "bufbuild";
repo = pname;
rev = "v${version}";
sha256 = "sha256-xP2UbcHwimN09IXrGp3zhBLL74l/8YKotqBNRTITF18=";
2021-03-25 11:41:51 +01:00
};
vendorSha256 = "sha256-WgQSLe99CbOwJC8ewDcSq6PcBJdmiPRmvAonq8drQ1w=";
2021-03-25 11:41:51 +01:00
patches = [
# Skip a test that requires networking to be available to work.
2021-03-25 11:41:51 +01:00
./skip_test_requiring_network.patch
# Skip TestWorkspaceGit which requires .git and commits.
./skip_test_requiring_dotgit.patch
2021-03-25 11:41:51 +01:00
];
nativeBuildInputs = [ protobuf ];
# Required for TestGitCloner
checkInputs = [ git ];
ldflags = [ "-s" "-w" ];
2021-03-25 11:41:51 +01:00
preCheck = ''
# The tests need access to some of the built utilities
export PATH="$PATH:$GOPATH/bin"
# To skip TestCloneBranchAndRefToBucket
export CI=true
2021-03-25 11:41:51 +01:00
'';
installPhase = ''
runHook preInstall
mkdir -p "$out/bin"
# Only install required binaries, don't install testing binaries
for FILE in \
"buf" \
"protoc-gen-buf-breaking" \
"protoc-gen-buf-lint" \
"protoc-gen-buf-check-breaking" \
"protoc-gen-buf-check-lint"; do
cp "$GOPATH/bin/$FILE" "$out/bin/"
done
2021-03-25 11:41:51 +01:00
runHook postInstall
'';
2021-03-25 11:41:51 +01:00
doInstallCheck = true;
installCheckPhase = ''
runHook preInstallCheck
$out/bin/buf --help
$out/bin/buf --version 2>&1 | grep "${version}"
runHook postInstallCheck
'';
2021-03-25 11:41:51 +01:00
meta = with lib; {
homepage = "https://buf.build";
changelog = "https://github.com/bufbuild/buf/releases/tag/v${version}";
description = "Create consistent Protobuf APIs that preserve compatibility and comply with design best-practices";
2021-03-25 11:41:51 +01:00
license = licenses.asl20;
maintainers = with maintainers; [ raboof jk ];
2021-03-25 11:41:51 +01:00
};
}