diff options
author | Aylur <[email protected]> | 2024-09-11 22:27:12 +0000 |
---|---|---|
committer | Aylur <[email protected]> | 2024-09-11 22:27:12 +0000 |
commit | 8b75dadc76274692988eb317d3cc6ce1aaa44780 (patch) | |
tree | d354fa91618893ca6ee8a841ec5ac19e94e6a1c0 /nix/lua.nix | |
parent | e2b9013d38f64f6e0f53841f32f9e000b74e220f (diff) |
docs: package lua on nix
Diffstat (limited to 'nix/lua.nix')
-rw-r--r-- | nix/lua.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/nix/lua.nix b/nix/lua.nix index 0449c34..a790021 100644 --- a/nix/lua.nix +++ b/nix/lua.nix @@ -44,10 +44,12 @@ in ]; installPhase = '' + runHook preInstall mkdir -p $out/bin cp -r * $out/bin echo '${script}' > astal-lua install -m 755 astal-lua $out/bin/${name} + runHook postInstall ''; gappsWrapperArgs = [ |