mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
24 lines
656 B
Nix
24 lines
656 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";
|
||
|
};
|
||
|
|
||
|
modSha256 = "19cqz13jd95d5vibd10420gg69ldgf6afc51mkglhafgmmif56b0";
|
||
|
|
||
|
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;
|
||
|
};
|
||
|
}
|