mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
protolock: init at 0.14.1
This commit is contained in:
parent
dd37035580
commit
3b40812df5
26
pkgs/development/libraries/protolock/default.nix
Normal file
26
pkgs/development/libraries/protolock/default.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "protolock";
|
||||
version = "0.14.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "nilslice";
|
||||
repo = "protolock";
|
||||
rev = "v${version}";
|
||||
sha256 = "0assk7hp9s3m7zm5i1v0pggz00a54yf2w3y0b8mlq5v51y2h8h2z";
|
||||
};
|
||||
|
||||
modSha256 = "079hbv0f8k5lljrb1cr9568wq8sb9yry9smgbrji19yavd9fzcmh";
|
||||
|
||||
postInstall = ''
|
||||
rm $out/bin/plugin*
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Protocol Buffer companion tool. Track your .proto files and prevent changes to messages and services which impact API compatibility. https://protolock.dev";
|
||||
homepage = "https://github.com/nilslice/protolock";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ groodt ];
|
||||
};
|
||||
}
|
@ -13162,6 +13162,8 @@ in
|
||||
|
||||
protobufc = callPackage ../development/libraries/protobufc/1.3.nix { };
|
||||
|
||||
protolock = callPackage ../development/libraries/protolock { };
|
||||
|
||||
protozero = callPackage ../development/libraries/protozero { };
|
||||
|
||||
flatbuffers = callPackage ../development/libraries/flatbuffers { };
|
||||
|
Loading…
Reference in New Issue
Block a user