biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / protoc-gen-twirp_php / default.nix
blob7fc04ae81ae3f48a6feac130fb6228ef206f1b60
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     mainProgram = "protoc-gen-twirp_php";
25     homepage = "https://github.com/twirphp/twirp";
26     license = licenses.mit;
27     maintainers = with maintainers; [ jojosch ];
28   };