Merge pull request #312882 from aaronjheng/temporal-cli

temporal-cli: tctl: 1.18.0 -> 1.18.1
This commit is contained in:
Weijia Wang 2024-05-22 20:08:23 +02:00 committed by GitHub
commit 1056a4cdf5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -44,7 +44,7 @@ let
doCheck = !(stdenv.isDarwin && stdenv.hostPlatform.isx86_64); doCheck = !(stdenv.isDarwin && stdenv.hostPlatform.isx86_64);
preCheck = '' preCheck = ''
export HOME=$(mktemp -d) export HOME="$(mktemp -d)"
''; '';
postInstall = '' postInstall = ''
@ -63,16 +63,16 @@ let
tctl = buildGoModule rec { tctl = buildGoModule rec {
pname = "tctl"; pname = "tctl";
version = "1.18.0"; version = "1.18.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "temporalio"; owner = "temporalio";
repo = "tctl"; repo = "tctl";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-LcBKkx3mcDOrGT6yJx98CSgxbwskqGPWqOzHWOu6cig="; hash = "sha256-LX4hyPme+mkNmPvrTHIT5Ow3QM8BTAB7MXSY1fa8tSk=";
}; };
vendorHash = "sha256-5wCIY95mJ6+FCln4yBu+fM4ZcsxBGcXkCvxjGzt0+dM="; vendorHash = "sha256-294lnUKnXNrN6fJ+98ub7LwsJ9aT+FzWCB3nryfAlCI=";
inherit overrideModAttrs; inherit overrideModAttrs;
@ -83,7 +83,7 @@ let
ldflags = [ "-s" "-w" ]; ldflags = [ "-s" "-w" ];
preCheck = '' preCheck = ''
export HOME=$(mktemp -d) export HOME="$(mktemp -d)"
''; '';
postInstall = '' postInstall = ''