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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
741 B
Nix
Raw Normal View History

2019-10-02 23:57:49 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "protolock";
2022-03-04 15:53:31 +00:00
version = "0.16.0";
2019-10-02 23:57:49 +00:00
src = fetchFromGitHub {
owner = "nilslice";
repo = "protolock";
rev = "v${version}";
2022-03-04 15:53:31 +00:00
sha256 = "sha256-vWwRZVArmlTIGwD4zV3dEHN2kkoeCZuNIvjCBVAviPo=";
2019-10-02 23:57:49 +00:00
};
2022-07-05 15:31:50 +00:00
vendorSha256 = "sha256-pYtP+Tkh2TcGsbk7zQNaoYLEQrqGOL0gkMG5dUkfpt4=";
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 ];
};
}