python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / tools / protoc-gen-twirp_php / default.nix
bloba54c860f29572273fe07bde242c9295446a19974
1 { lib, buildGoModule, fetchgit }:
3 buildGoModule rec {
4   pname = "protoc-gen-twirp_php";
5   version = "0.8.1";
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-5PACgKqc8rWqaA6Syj5NyxHm3827yd67tm0mwVSMnWQ=";
12   };
14   vendorSha256 = "sha256-qQFlBviRISEnPBt0q5391RqUrPTI/QDxg3MNfwWE8MI=";
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   };