python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / tools / protoc-gen-entgrpc / default.nix
blobc2afb381aa298a0df5ace2f43488f6eeaa883584
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "protoc-gen-entgrpc";
5   version = "0.3.0";
7   src = fetchFromGitHub {
8     owner = "ent";
9     repo = "contrib";
10     rev = "v${version}";
11     sha256 = "sha256-hK4I2LVvw7hkbUKRuDoaRuNX3nwlwipYucnXwzOCcXs=";
12   };
14   vendorSha256 = "sha256-bAM+NxD7mNd2fFxRDHCAzJTD7PVfT/9XHF88v9RHKwE=";
16   subPackages = [ "entproto/cmd/protoc-gen-entgrpc" ];
18   ldflags = [ "-s" "-w" ];
20   meta = with lib; {
21     description = "Generator of an implementation of the service interface for ent protobuff";
22     downloadPage = "https://github.com/ent/contrib/";
23     license = licenses.asl20;
24     homepage = "https://entgo.io/";
25     maintainers = with maintainers; [ ];
26   };