chainsaw: add ldflags

+6 -1
+6 -1
pkgs/tools/security/chainsaw/default.nix
··· 22 22 darwin.apple_sdk.frameworks.CoreFoundation 23 23 ]; 24 24 25 + ldflags = [ 26 + "-w" 27 + "-s" 28 + ]; 29 + 25 30 meta = with lib; { 26 31 description = "Rapidly Search and Hunt through Windows Forensic Artefacts"; 27 - mainProgram = "chainsaw"; 28 32 homepage = "https://github.com/WithSecureLabs/chainsaw"; 29 33 changelog = "https://github.com/WithSecureLabs/chainsaw/releases/tag/v${version}"; 30 34 license = licenses.gpl3Only; 31 35 maintainers = with maintainers; [ fab ]; 36 + mainProgram = "chainsaw"; 32 37 }; 33 38 }