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