summary refs log tree commit diff
path: root/pkgs/development/tools/protoc-gen-twirp_typescript
diff options
context:
space:
mode:
authorJohannes Schleifenbaum <johannes@js-webcoding.de>2021-03-29 16:30:12 +0200
committerJohannes Schleifenbaum <johannes@js-webcoding.de>2021-03-30 11:12:34 +0200
commit71423755c7a09a994a1346a68ea7c0195c3e6ed6 (patch)
tree1802cff0c611e7bbd40b0f6093a814d501e69a45 /pkgs/development/tools/protoc-gen-twirp_typescript
parent61457d04ef8d530c21d4a01b5fda9d13de389253 (diff)
downloadnixpkgs-71423755c7a09a994a1346a68ea7c0195c3e6ed6.tar
nixpkgs-71423755c7a09a994a1346a68ea7c0195c3e6ed6.tar.gz
nixpkgs-71423755c7a09a994a1346a68ea7c0195c3e6ed6.tar.bz2
nixpkgs-71423755c7a09a994a1346a68ea7c0195c3e6ed6.tar.lz
nixpkgs-71423755c7a09a994a1346a68ea7c0195c3e6ed6.tar.xz
nixpkgs-71423755c7a09a994a1346a68ea7c0195c3e6ed6.tar.zst
nixpkgs-71423755c7a09a994a1346a68ea7c0195c3e6ed6.zip
protoc-gen-twirp_typescript: init at unstable-2021-03-29
Diffstat (limited to 'pkgs/development/tools/protoc-gen-twirp_typescript')
-rw-r--r--pkgs/development/tools/protoc-gen-twirp_typescript/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/development/tools/protoc-gen-twirp_typescript/default.nix b/pkgs/development/tools/protoc-gen-twirp_typescript/default.nix
new file mode 100644
index 00000000000..2aabe3bcce6
--- /dev/null
+++ b/pkgs/development/tools/protoc-gen-twirp_typescript/default.nix
@@ -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 ];
+  };
+}