Merge pull request #198269 from DGollings/update-protoc-gen-twirp_typescript

authored by Janik and committed by GitHub 7ce0abe7 6fdd7691

+11 -4
+6
maintainers/maintainer-list.nix
··· 4147 fingerprint = "1C4E F4FE 7F8E D8B7 1E88 CCDF BAB1 D15F B7B4 D4CE"; 4148 }]; 4149 }; 4150 dgonyeo = { 4151 email = "derek@gonyeo.com"; 4152 github = "dgonyeo";
··· 4147 fingerprint = "1C4E F4FE 7F8E D8B7 1E88 CCDF BAB1 D15F B7B4 D4CE"; 4148 }]; 4149 }; 4150 + dgollings = { 4151 + email = "daniel.gollings+nixpkgs@gmail.com"; 4152 + github = "dgollings"; 4153 + githubId = 2032823; 4154 + name = "Daniel Gollings"; 4155 + }; 4156 dgonyeo = { 4157 email = "derek@gonyeo.com"; 4158 github = "dgonyeo";
+5 -4
pkgs/development/tools/protoc-gen-twirp_typescript/default.nix
··· 2 3 buildGoModule { 4 pname = "protoc-gen-twirp_typescript"; 5 - version = "unstable-2021-03-29"; 6 7 src = fetchFromGitHub { 8 owner = "larrymyers"; 9 repo = "protoc-gen-twirp_typescript"; 10 - rev = "97fd63e543beb2d9f6a90ff894981affe0f2faf1"; 11 sha256 = "sha256-LfF/n96LwRX8aoPHzCRI/QbDmZR9yMhE5yGhFAqa8nA="; 12 }; 13 14 - vendorSha256 = "sha256-WISWuq1neVX4xQkoamc6FznZahOQHwgkYmERJF40OFQ="; 15 16 subPackages = [ "." ]; 17 ··· 19 description = "Protobuf Plugin for Generating a Twirp Typescript Client"; 20 homepage = "https://github.com/larrymyers/protoc-gen-twirp_typescript"; 21 license = licenses.mit; 22 - maintainers = with maintainers; [ jojosch ]; 23 }; 24 }
··· 2 3 buildGoModule { 4 pname = "protoc-gen-twirp_typescript"; 5 + version = "unstable-2022-08-14"; 6 7 src = fetchFromGitHub { 8 owner = "larrymyers"; 9 repo = "protoc-gen-twirp_typescript"; 10 + rev = "535986b31881a214db3c04f122bcc96a2823a155"; 11 sha256 = "sha256-LfF/n96LwRX8aoPHzCRI/QbDmZR9yMhE5yGhFAqa8nA="; 12 }; 13 14 + proxyVendor = true; 15 + vendorSha256 = "sha256-UyxHa28SY60U8VeL7TbSTyscqN5T7tKGfuN2GIL6QIg"; 16 17 subPackages = [ "." ]; 18 ··· 20 description = "Protobuf Plugin for Generating a Twirp Typescript Client"; 21 homepage = "https://github.com/larrymyers/protoc-gen-twirp_typescript"; 22 license = licenses.mit; 23 + maintainers = with maintainers; [ jojosch dgollings ]; 24 }; 25 }