cli arguments, clippy passes

This commit is contained in:
mtgmonkey 2025-07-08 07:53:14 -04:00
parent b4da358591
commit a100c9be52
8 changed files with 528 additions and 958 deletions

View file

@ -9,6 +9,7 @@
makeWrapper,
naersk,
pkg-config,
upx,
wayland,
xorg,
...
@ -33,8 +34,10 @@ naersk.buildPackage rec {
nativeBuildInputs = [
pkg-config
makeWrapper
upx
];
postInstall = ''
upx --lzma $out/bin/${meta.mainProgram}
wrapProgram "$out/bin/${meta.mainProgram}" --prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath buildInputs}"
'';
meta = {