about summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster/temporal
diff options
context:
space:
mode:
authorJonathan Rudenberg <jonathan@titanous.com>2022-02-18 15:08:48 -0500
committerJonathan Rudenberg <jonathan@titanous.com>2022-02-18 15:09:12 -0500
commitc74e610c221c24aae629a93b81507791a673b0a3 (patch)
treef7246c37ed788a9ddb83dcb05a83c99ccf97c3b8 /pkgs/applications/networking/cluster/temporal
parentdc27013b583148f60dd96869b54544373a101a43 (diff)
temporal: add -tool bin suffixes to match upstream
Diffstat (limited to 'pkgs/applications/networking/cluster/temporal')
-rw-r--r--pkgs/applications/networking/cluster/temporal/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/networking/cluster/temporal/default.nix b/pkgs/applications/networking/cluster/temporal/default.nix
index 36c537a1c3212..2475dd0f1d940 100644
--- a/pkgs/applications/networking/cluster/temporal/default.nix
+++ b/pkgs/applications/networking/cluster/temporal/default.nix
@@ -23,9 +23,9 @@ buildGoModule rec {
     mkdir -p $out/bin
     install -Dm755 "$GOPATH/bin/cli" -T $out/bin/tctl
     install -Dm755 "$GOPATH/bin/authorization" -T $out/bin/tctl-authorization-plugin
-    install -Dm755 "$GOPATH/bin/cassandra" -T $out/bin/temporal-cassandra
     install -Dm755 "$GOPATH/bin/server" -T $out/bin/temporal-server
-    install -Dm755 "$GOPATH/bin/sql" -T $out/bin/temporal-sql
+    install -Dm755 "$GOPATH/bin/cassandra" -T $out/bin/temporal-cassandra-tool
+    install -Dm755 "$GOPATH/bin/sql" -T $out/bin/temporal-sql-tool
     runHook postInstall
   '';