summary refs log blame commit diff
path: root/pkgs/development/tools/protoc-gen-twirp_typescript/default.nix
blob: 2aabe3bcce6e4b1c2c0a07fecb54be8ff24068fd (plain) (tree)























                                                                             
{ lib, buildGoModule, fetchFromGitHub }:

buildGoModule {
  pname = "protoc-gen-twirp_typescript";
  version = "unstable-2021-03-29";

  src = fetchFromGitHub {
    owner = "larrymyers";
    repo = "protoc-gen-twirp_typescript";
    rev = "97fd63e543beb2d9f6a90ff894981affe0f2faf1";
    sha256 = "sha256-LfF/n96LwRX8aoPHzCRI/QbDmZR9yMhE5yGhFAqa8nA=";
  };

  vendorSha256 = "sha256-WISWuq1neVX4xQkoamc6FznZahOQHwgkYmERJF40OFQ=";

  subPackages = [ "." ];

  meta = with lib; {
    description = "Protobuf Plugin for Generating a Twirp Typescript Client";
    homepage = "https://github.com/larrymyers/protoc-gen-twirp_typescript";
    license = licenses.mit;
    maintainers = with maintainers; [ jojosch ];
  };
}