flake: bump inputs

This commit is contained in:
kossLAN 2024-11-03 03:53:52 -05:00
parent 2ca6c0dd12
commit 46c3141542
Signed by: kossLAN
SSH key fingerprint: SHA256:bdV0x+wdQHGJ6LgmstH3KV8OpWY+OOFmJcPcB0wQPV8
2 changed files with 110 additions and 10 deletions

View file

@ -205,4 +205,8 @@ with lib;
+ lib.optionalString isCustomAppName ''
mv $out/bin/nvim $out/bin/${lib.escapeShellArg appName}
'';
meta.mainProgram =
if isCustomAppName
then appName
else oa.meta.mainProgram;
})