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.

29 lines
757 B
Nix
Raw Normal View History

2021-03-29 15:28:07 +01:00
{ lib, buildGoModule, fetchgit }:
buildGoModule rec {
pname = "protoc-gen-twirp_php";
2022-11-29 08:35:19 +00:00
version = "0.9.1";
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}";
2022-11-29 08:35:19 +00:00
sha256 = "sha256-6tA+iNcs6s4vviWSJ5gCL9hPyCa7OvYXRCCokAAO0T8=";
2021-03-29 15:28:07 +01:00
};
2022-11-29 08:35:19 +00:00
vendorSha256 = "sha256-Kz9tMM4XSMOUmlHb/BE5/C/ZohdE505DTeDj9lGki/I=";
2021-03-29 15:28:07 +01:00
subPackages = [ "protoc-gen-twirp_php" ];
2022-02-07 10:37:02 +00:00
ldflags = [
"-X main.version=${version}"
];
2021-03-29 15:28:07 +01:00
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 ];
};
}