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.

29 lines
738 B
Nix
Raw Normal View History

2022-04-27 19:39:06 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "protoc-gen-entgrpc";
2022-07-29 17:51:33 +00:00
version = "0.3.0";
2022-04-27 19:39:06 +00:00
src = fetchFromGitHub {
owner = "ent";
repo = "contrib";
rev = "v${version}";
2022-07-29 17:51:33 +00:00
sha256 = "sha256-hK4I2LVvw7hkbUKRuDoaRuNX3nwlwipYucnXwzOCcXs=";
2022-04-27 19:39:06 +00:00
};
2022-07-29 17:51:33 +00:00
vendorSha256 = "sha256-bAM+NxD7mNd2fFxRDHCAzJTD7PVfT/9XHF88v9RHKwE=";
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";
downloadPage = "https://github.com/ent/contrib/";
license = licenses.asl20;
homepage = "https://entgo.io/";
maintainers = with maintainers; [ superherointj ];
};
}