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

62 lines
1.4 KiB
Nix
Raw Normal View History

2021-03-25 10:41:51 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
, protobuf
, git
2021-03-25 10:41:51 +00:00
}:
buildGoModule rec {
pname = "buf";
2021-07-28 11:23:06 +00:00
version = "0.46.0";
2021-03-25 10:41:51 +00:00
src = fetchFromGitHub {
owner = "bufbuild";
repo = pname;
rev = "v${version}";
2021-07-28 11:23:06 +00:00
sha256 = "sha256-5mjk31HuPNO/RhmMhIm3dAZAED/Kk33ObjC8KbPKRxk=";
leaveDotGit = true; # Required by TestWorkspaceGit
2021-03-25 10:41:51 +00:00
};
2021-07-28 11:23:06 +00:00
vendorSha256 = "sha256-K8UZDEhAvD292RCEDKfY9PdZGS389vLF3oukcBndUF4=";
2021-03-25 10:41:51 +00:00
patches = [
# Skip a test that requires networking to be available to work.
2021-03-25 10:41:51 +00:00
./skip_test_requiring_network.patch
];
nativeBuildInputs = [ protobuf ];
checkInputs = [ git ];
ldflags = [ "-s" "-w" ];
2021-03-25 10:41:51 +00:00
preCheck = ''
export PATH=$PATH:$GOPATH/bin
# To skip TestCloneBranchAndRefToBucket
export CI=true
2021-03-25 10:41:51 +00:00
'';
installPhase = ''
runHook preInstall
mkdir -p "$out/bin"
dir="$GOPATH/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 "$dir/$file" "$out/bin/"
done
2021-03-25 10:41:51 +00:00
runHook postInstall
'';
2021-03-25 10:41:51 +00:00
meta = with lib; {
description = "Create consistent Protobuf APIs that preserve compatibility and comply with design best-practices";
homepage = "https://buf.build";
license = licenses.asl20;
maintainers = with maintainers; [ raboof ];
};
}