Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / tools / protoc-gen-twirp_php / default.nix
blob30b2ff3ce78d1df118af56b87447869b15ea9145
1 { lib, buildGoModule, fetchgit }:
3 buildGoModule rec {
4   pname = "protoc-gen-twirp_php";
5   version = "0.10.0";
7   # fetchFromGitHub currently not possible, because go.mod and go.sum are export-ignored
8   src = fetchgit {
9     url = "https://github.com/twirphp/twirp.git";
10     rev = "v${version}";
11     sha256 = "sha256-YMndB5DiER2Z1ARbw2cpxE1DBFCoVNWhMdsfA3X27EE=";
12   };
14   vendorHash = "sha256-Gf8thGuFAKX4pCNFJM3RbJ63vciLNcSqpOULcUOaGNw=";
16   subPackages = [ "protoc-gen-twirp_php" ];
18   ldflags = [
19     "-X main.version=${version}"
20   ];
22   meta = with lib; {
23     description = "PHP port of Twitch's Twirp RPC framework";
24     homepage = "https://github.com/twirphp/twirp";
25     license = licenses.mit;
26     maintainers = with maintainers; [ jojosch ];
27   };