nixpkgs/pkgs/development/tools/protoc-gen-entgrpc/default.nix

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

30 lines
762 B
Nix
Raw Normal View History

2022-04-27 19:39:06 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "protoc-gen-entgrpc";
2024-04-22 04:36:21 +00:00
version = "0.5.0";
2022-04-27 19:39:06 +00:00
src = fetchFromGitHub {
owner = "ent";
repo = "contrib";
rev = "v${version}";
2024-04-22 04:36:21 +00:00
sha256 = "sha256-fXvpPH4b1JG++z0KEm9BNu5pGkneefNVvi9R5R3FqB4=";
2022-04-27 19:39:06 +00:00
};
2024-04-22 04:36:21 +00:00
vendorHash = "sha256-SdUs2alcc4rA6CGIrnaLO7KCseP4a0v6WE58JcRGr0k=";
2022-04-27 19:39:06 +00:00
subPackages = [ "entproto/cmd/protoc-gen-entgrpc" ];
ldflags = [ "-s" "-w" ];
meta = with lib; {
description = "Generator of an implementation of the service interface for ent protobuff";
mainProgram = "protoc-gen-entgrpc";
2022-04-27 19:39:06 +00:00
downloadPage = "https://github.com/ent/contrib/";
license = licenses.asl20;
homepage = "https://entgo.io/";
2022-10-04 17:06:48 +00:00
maintainers = with maintainers; [ ];
2022-04-27 19:39:06 +00:00
};
}