Replace substituteAll with replaceVars
All checks were successful
Cachix / build (elendel) (push) Successful in 3m24s
Cachix / build (kholinar) (push) Successful in 6m32s
Cachix / build (marabethia) (push) Successful in 5m15s

This commit is contained in:
Charlotte Van Petegem 2025-04-30 18:51:29 +02:00
parent d52b1dcbff
commit ae71eca94a
Signed by: chvp
SSH key fingerprint: SHA256:+xxExaZKfphaPBA/f79I53pATM1GM3mRUFmOl/ChUbM

View file

@ -1,20 +1,14 @@
{ pkgs, stdenv }: { pkgs, stdenv }:
let let
script = pkgs.substituteAll { script = pkgs.replaceVars ./launcher.zsh {
src = ./launcher.zsh;
inherit (pkgs) inherit (pkgs)
fzy fzy
jq
libqalculate libqalculate
nix nix
pass
slurp
uni uni
zsh zsh
; ;
# wfRecorder = pkgs.wf-recorder;
wlClipboard = pkgs.wl-clipboard; wlClipboard = pkgs.wl-clipboard;
xdgUserDirs = pkgs.xdg-user-dirs;
}; };
in in
pkgs.runCommand "launcher" { } '' pkgs.runCommand "launcher" { } ''