nixpkgs/pkgs/development/libraries/protolock/default.nix

29 lines
761 B
Nix
Raw Normal View History

2019-10-02 23:57:49 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "protolock";
2021-02-21 03:09:44 +00:00
version = "0.15.2";
2019-10-02 23:57:49 +00:00
src = fetchFromGitHub {
owner = "nilslice";
repo = "protolock";
rev = "v${version}";
2021-02-21 03:09:44 +00:00
sha256 = "sha256-cKrG8f8cabuGDN1gmBYleXcBqeJksdREiEy63UK/6J0=";
2019-10-02 23:57:49 +00:00
};
2021-02-03 21:13:17 +00:00
vendorSha256 = "sha256-3kRGLZgYcbUQb6S+NrleMNNX0dXrE9Yer3vvqxiP4So=";
2019-10-02 23:57:49 +00:00
doCheck = false;
2019-10-02 23:57:49 +00:00
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 ];
};
}