From a5645ed37c00413c7a6d3a593a5855a47c070977 Mon Sep 17 00:00:00 2001 From: Alejandro Soto Date: Wed, 24 Dec 2025 17:19:30 -0600 Subject: pkgs/tmux-open: 25.11 updates: replace substituteAll with replaceVars --- pkgs/tmux-open/default.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'pkgs/tmux-open/default.nix') 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; })) -- cgit v1.2.3