Merge pull request #238833 from fabaff/chainsaw
chainsaw: init at 2.6.2
This commit is contained in:
commit
568e02bff2
2401
pkgs/tools/security/chainsaw/Cargo.lock
generated
Normal file
2401
pkgs/tools/security/chainsaw/Cargo.lock
generated
Normal file
File diff suppressed because it is too large
Load Diff
37
pkgs/tools/security/chainsaw/default.nix
Normal file
37
pkgs/tools/security/chainsaw/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -6347,6 +6347,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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user