42 lines
998 B
Nix
42 lines
998 B
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage (finalAttrs: {
|
|
pname = "chainsaw";
|
|
version = "2.12.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "WithSecureLabs";
|
|
repo = "chainsaw";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-SoQXGpkMrE0vno0dJ00ebB0oR1sDVlgWRSgKQoHlv2A=";
|
|
};
|
|
|
|
cargoHash = "sha256-ncf5fRf9NulcWTOuRE2rdAOIyvz5YEgpB1j/Rfj8vDk=";
|
|
|
|
ldflags = [
|
|
"-w"
|
|
"-s"
|
|
];
|
|
|
|
checkFlags = [
|
|
# failed
|
|
"--skip=analyse_srum_database_json"
|
|
"--skip=search_jq_simple_string"
|
|
"--skip=search_q_jsonl_simple_string"
|
|
"--skip=search_q_simple_string"
|
|
];
|
|
|
|
meta = {
|
|
description = "Rapidly Search and Hunt through Windows Forensic Artefacts";
|
|
homepage = "https://github.com/WithSecureLabs/chainsaw";
|
|
changelog = "https://github.com/WithSecureLabs/chainsaw/releases/tag/v${finalAttrs.version}";
|
|
license = lib.licenses.gpl3Only;
|
|
maintainers = with lib.maintainers; [ fab ];
|
|
mainProgram = "chainsaw";
|
|
};
|
|
})
|