temporal-cli: tctl: 1.18.0 -> 1.18.1

This commit is contained in:
Aaron Jheng
2024-05-19 20:47:19 +08:00
parent 0bdd49cb10
commit 0371acc737
@@ -44,7 +44,7 @@ let
doCheck = !(stdenv.isDarwin && stdenv.hostPlatform.isx86_64);
preCheck = ''
export HOME=$(mktemp -d)
export HOME="$(mktemp -d)"
'';
postInstall = ''
@@ -63,16 +63,16 @@ let
tctl = buildGoModule rec {
pname = "tctl";
version = "1.18.0";
version = "1.18.1";
src = fetchFromGitHub {
owner = "temporalio";
repo = "tctl";
rev = "v${version}";
hash = "sha256-LcBKkx3mcDOrGT6yJx98CSgxbwskqGPWqOzHWOu6cig=";
hash = "sha256-LX4hyPme+mkNmPvrTHIT5Ow3QM8BTAB7MXSY1fa8tSk=";
};
vendorHash = "sha256-5wCIY95mJ6+FCln4yBu+fM4ZcsxBGcXkCvxjGzt0+dM=";
vendorHash = "sha256-294lnUKnXNrN6fJ+98ub7LwsJ9aT+FzWCB3nryfAlCI=";
inherit overrideModAttrs;
@@ -83,7 +83,7 @@ let
ldflags = [ "-s" "-w" ];
preCheck = ''
export HOME=$(mktemp -d)
export HOME="$(mktemp -d)"
'';
postInstall = ''