Unnamed repository; edit this file 'description' to name the repository.
nix: pass makeWrapperArgs to wrapProgram (#3003)
Timothy DeHerrera 2022-07-09
parent fefa4d8 · commit 718c3ba
-rw-r--r--flake.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index d0d454af..fdeed2aa 100644
--- a/flake.nix
+++ b/flake.nix
@@ -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
'';
};