26 lines
681 B
Nix
26 lines
681 B
Nix
{ buildGoModule, fetchFromGitHub, lib }:
|
|
|
|
buildGoModule rec {
|
|
pname = "proto-contrib";
|
|
version = "0.9.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "emicklei";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "0ksxic7cypv9gg8q5lkl5bla1n9i65z7b03cx9lwq6252glmf2jk";
|
|
};
|
|
|
|
vendorSha256 = "1ivvq5ch9grdrwqq29flv9821kyb16k0cj6wgj5v0dyn63w420aw";
|
|
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Contributed tools and other packages on top of the Go proto package";
|
|
homepage = "https://github.com/emicklei/proto-contrib";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ kalbasit ];
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
};
|
|
}
|