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

37 lines
770 B
Nix
Raw Normal View History

2021-03-25 10:41:51 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
, protobuf
}:
buildGoModule rec {
pname = "buf";
2021-04-27 17:39:59 +01:00
version = "0.41.0";
2021-03-25 10:41:51 +00:00
src = fetchFromGitHub {
owner = "bufbuild";
repo = pname;
rev = "v${version}";
2021-04-27 17:39:59 +01:00
sha256 = "sha256-f1UcvsXWW+fMAgTRtHkEXmUN/DTrJ/Xd+9HbR2FjFog=";
2021-03-25 10:41:51 +00:00
};
patches = [
./skip_test_requiring_network.patch
];
preCheck = ''
export PATH=$PATH:$GOPATH/bin
'';
nativeBuildInputs = [ protobuf ];
2021-04-27 17:39:59 +01:00
vendorSha256 = "sha256-XMGXVsSLEzuzujX5Fg3LLkgzyJY+nIBJEO9iI2t9eGc=";
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 ];
};
}