nixpkgs/pkgs/development/tools/protoc-gen-twirp_php/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
704 B
Nix
Raw Normal View History

2021-03-29 15:28:07 +01:00
{ lib, buildGoModule, fetchgit }:
buildGoModule rec {
pname = "protoc-gen-twirp_php";
2021-11-01 19:13:42 +00:00
version = "0.8.0";
2021-03-29 15:28:07 +01:00
# fetchFromGitHub currently not possible, because go.mod and go.sum are export-ignored
src = fetchgit {
url = "https://github.com/twirphp/twirp.git";
rev = "v${version}";
2021-11-01 19:13:42 +00:00
sha256 = "sha256-TaHfyYoWsA/g5xZFxIMNwE1w6Dd9Cq5bp1gpQudYLs0=";
2021-03-29 15:28:07 +01:00
};
vendorSha256 = "sha256-qQFlBviRISEnPBt0q5391RqUrPTI/QDxg3MNfwWE8MI=";
2021-03-29 15:28:07 +01:00
subPackages = [ "protoc-gen-twirp_php" ];
meta = with lib; {
description = "PHP port of Twitch's Twirp RPC framework";
homepage = "https://github.com/twirphp/twirp";
license = licenses.mit;
maintainers = with maintainers; [ jojosch ];
};
}