Merge pull request #178914 from aaronjheng/tctl

temporal-cli: 1.16.1 -> 1.16.2

authored by Mario Rodas and committed by GitHub 4a0b12e1 56c04004

+4 -13
+4 -13
pkgs/applications/networking/cluster/temporal-cli/default.nix
··· 1 - { lib, fetchFromGitHub, fetchpatch, buildGoModule, testers, temporal-cli }: 2 3 buildGoModule rec { 4 pname = "temporal-cli"; 5 - version = "1.16.1"; 6 7 src = fetchFromGitHub { 8 owner = "temporalio"; 9 repo = "tctl"; 10 rev = "v${version}"; 11 - sha256 = "sha256-WNdu/62/VmxTmzAvzx3zIlcAAlEmpN0yKzQOSUtrL8s="; 12 }; 13 14 - patches = [ 15 - # Fix tests 16 - (fetchpatch { 17 - name = "fix-tests.patch"; 18 - url = "https://github.com/temporalio/tctl/pull/203/commits/2b113da137a3a925e8fbd7c18bdaaefc31397db4.patch"; 19 - sha256 = "sha256-HFPwbmLZ2uPHzaHvYoB4MTZvMVyzvUKggA76/bh50DQ="; 20 - }) 21 - ]; 22 - 23 - vendorSha256 = "sha256-WF3T+HNisfR0JoKkHCC77kmHmsGZ9NfQ7UCwOmpCG/o="; 24 25 ldflags = [ "-s" "-w" ]; 26
··· 1 + { lib, fetchFromGitHub, buildGoModule, testers, temporal-cli }: 2 3 buildGoModule rec { 4 pname = "temporal-cli"; 5 + version = "1.16.2"; 6 7 src = fetchFromGitHub { 8 owner = "temporalio"; 9 repo = "tctl"; 10 rev = "v${version}"; 11 + sha256 = "sha256-KLcCFQJlFeioIhqrbkhgoNPcbAYvy1ESG8x9Y/I7+nw="; 12 }; 13 14 + vendorSha256 = "sha256-kczmoP32/V0HHeC3Mr+giuMB+McVTNeC2F+t1ohY4/U="; 15 16 ldflags = [ "-s" "-w" ]; 17