diff options
| author | Andrew Marshall <andrew@johnandrewmarshall.com> | 2023-07-10 17:53:24 -0400 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2023-07-23 22:52:05 +0000 |
| commit | a701898c4c5375550750ec9064f8fced62ecbc0a (patch) | |
| tree | ec6028e966106243297b2a78f0b7b03ff27819c0 | |
| parent | Merge pull request #244714 from NixOS/backport-238540-to-release-23.05 (diff) | |
| download | nixpkgs-a701898c4c5375550750ec9064f8fced62ecbc0a.tar.gz | |
temporal-cli: Passthru nested drvs to make accessing them easier
(cherry picked from commit 27df9441f99a75fe46272922a61f0c0eacd46177)
| -rw-r--r-- | pkgs/applications/networking/cluster/temporal-cli/default.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/applications/networking/cluster/temporal-cli/default.nix b/pkgs/applications/networking/cluster/temporal-cli/default.nix index 72622d25c3c1..9671b4b304e9 100644 --- a/pkgs/applications/networking/cluster/temporal-cli/default.nix +++ b/pkgs/applications/networking/cluster/temporal-cli/default.nix @@ -75,6 +75,8 @@ symlinkJoin rec { tctl ]; + passthru = { inherit tctl tctl-next; }; + meta = with lib; { description = "Temporal CLI"; homepage = "https://temporal.io"; |
