summaryrefslogtreecommitdiff
path: root/pkgs
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2025-12-24 17:19:30 -0600
committerAlejandro Soto <alejandro@34project.org>2025-12-24 17:19:55 -0600
commita5645ed37c00413c7a6d3a593a5855a47c070977 (patch)
tree0b154af2196957758b981e5e454a347beb260b28 /pkgs
parent1108ab1c4ffe76a14080fc1abb8015012b1a0c9c (diff)
pkgs/tmux-open: 25.11 updates: replace substituteAll with replaceVars
Diffstat (limited to '')
-rw-r--r--pkgs/tmux-open/default.nix7
1 files changed, 3 insertions, 4 deletions
diff --git a/pkgs/tmux-open/default.nix b/pkgs/tmux-open/default.nix
index 1f882b4..3d4f5ce 100644
--- a/pkgs/tmux-open/default.nix
+++ b/pkgs/tmux-open/default.nix
@@ -1,12 +1,11 @@
{
jq,
- substituteAll,
+ replaceVars,
sway,
tmux,
writeShellScriptBin,
...
}:
-writeShellScriptBin "tmux-open" (builtins.readFile (substituteAll {
- src = ./tmux-open.sh;
- env = {inherit jq sway tmux;};
+writeShellScriptBin "tmux-open" (builtins.readFile (replaceVars ./tmux-open.sh {
+ inherit jq sway tmux;
}))