chainsaw: init at 2.6.2

This commit is contained in:
Fabian Affolter 2023-06-20 23:26:39 +02:00
parent 3a0019192f
commit f02d7fd921
3 changed files with 2440 additions and 0 deletions

2401
pkgs/tools/security/chainsaw/Cargo.lock generated Normal file

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,37 @@
{ lib
, rustPlatform
, fetchFromGitHub
, stdenv
, darwin
}:
rustPlatform.buildRustPackage rec {
pname = "chainsaw";
version = "2.6.2";
src = fetchFromGitHub {
owner = "WithSecureLabs";
repo = "chainsaw";
rev = "refs/tags/v${version}";
hash = "sha256-Et90CW1fHt6GuHgQP2nRvcS7in4zw2UgBiQhblQGM+8=";
};
cargoLock = {
lockFile = ./Cargo.lock;
outputHashes = {
"notatin-0.1.0" = "sha256-YHC/NavKf0FoYtd5NM8ovUfSd4ODhKaA82mAT+HcefA=";
};
};
buildInputs = lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.CoreFoundation
];
meta = with lib; {
description = "Rapidly Search and Hunt through Windows Forensic Artefacts";
homepage = "https://github.com/WithSecureLabs/chainsaw";
changelog = "https://github.com/WithSecureLabs/chainsaw/releases/tag/v${version}";
license = licenses.gpl3Only;
maintainers = with maintainers; [ fab ];
};
}

View file

@ -6333,6 +6333,8 @@ with pkgs;
chain-bench = callPackage ../tools/security/chain-bench { };
chainsaw = callPackage ../tools/security/chainsaw { };
checkinstall = callPackage ../tools/package-management/checkinstall { };
checkmake = callPackage ../development/tools/checkmake { };