protoc-gen-twirp_typescript: init at unstable-2021-03-29

This commit is contained in:
Johannes Schleifenbaum 2021-03-29 16:30:12 +02:00
parent 61457d04ef
commit 71423755c7
No known key found for this signature in database
GPG key ID: 059093B1A278BCD0
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ 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 ];
};
}

View file

@ -265,6 +265,8 @@ in
protoc-gen-twirp_swagger = callPackage ../development/tools/protoc-gen-twirp_swagger { };
protoc-gen-twirp_typescript = callPackage ../development/tools/protoc-gen-twirp_typescript { };
ptags = callPackage ../development/tools/misc/ptags { };
ptouch-print = callPackage ../misc/ptouch-print { };