diff options
author | Timothy DeHerrera | 2022-07-09 16:17:44 +0000 |
---|---|---|
committer | GitHub | 2022-07-09 16:17:44 +0000 |
commit | 718c3baebecf4a970bc32724c564fa506ed40065 (patch) | |
tree | fb1b97148c2e89880f5217cfed64c84f270d7657 | |
parent | fefa4d8c5938c4e74b6eb01c6fb8379548c20ab4 (diff) |
nix: pass makeWrapperArgs to wrapProgram (#3003)
-rw-r--r-- | flake.nix | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -63,7 +63,7 @@ postFixup = '' if [ -f "$out/bin/hx" ]; then - wrapProgram "$out/bin/hx" --set HELIX_RUNTIME "${runtimeDir}" + wrapProgram "$out/bin/hx" ''${makeWrapperArgs[@]} --set HELIX_RUNTIME "${runtimeDir}" fi ''; }; |