chainsaw: add ldflags

This commit is contained in:
Fabian Affolter 2024-04-16 10:54:26 +02:00
parent f3c53de0eb
commit 76b3622967
1 changed files with 6 additions and 1 deletions

View File

@ -22,12 +22,17 @@ rustPlatform.buildRustPackage rec {
darwin.apple_sdk.frameworks.CoreFoundation
];
ldflags = [
"-w"
"-s"
];
meta = with lib; {
description = "Rapidly Search and Hunt through Windows Forensic Artefacts";
mainProgram = "chainsaw";
homepage = "https://github.com/WithSecureLabs/chainsaw";
changelog = "https://github.com/WithSecureLabs/chainsaw/releases/tag/v${version}";
license = licenses.gpl3Only;
maintainers = with maintainers; [ fab ];
mainProgram = "chainsaw";
};
}