fix(emacs): coerce makeWrapper args
All checks were successful
build / build (push) Successful in 2m11s

This commit is contained in:
2026-03-31 12:54:22 -06:00
parent 17fb45606b
commit 5dc4d57d7e

View File

@@ -56,7 +56,12 @@ in {
Extra arguments to pass to the final wrapProgram call. Extra arguments to pass to the final wrapProgram call.
''; '';
default = []; default = [];
type = lib.types.listOf lib.types.str; type = with lib.types;
listOf
(coercedTo
(oneOf [str package])
builtins.toString
str);
apply = lib.escapeShellArgs; apply = lib.escapeShellArgs;
}; };
}; };