diff options
Diffstat (limited to 'pkgs/tools/security/chainsaw/default.nix')
-rw-r--r-- | pkgs/tools/security/chainsaw/default.nix | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/pkgs/tools/security/chainsaw/default.nix b/pkgs/tools/security/chainsaw/default.nix deleted file mode 100644 index b529956a9655..000000000000 --- a/pkgs/tools/security/chainsaw/default.nix +++ /dev/null @@ -1,37 +0,0 @@ -{ - lib, - rustPlatform, - fetchFromGitHub, - stdenv, - darwin, -}: - -rustPlatform.buildRustPackage rec { - pname = "chainsaw"; - version = "2.9.2"; - - src = fetchFromGitHub { - owner = "WithSecureLabs"; - repo = "chainsaw"; - rev = "refs/tags/v${version}"; - hash = "sha256-oKlLFKCZNBcHURVvT0i8Hfym6r30ikndV30uuxjYgDM="; - }; - - cargoHash = "sha256-1w3DYP69aOphoqbsZIF9aX56Lftg2niKClmImLTa5DE="; - - buildInputs = lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.CoreFoundation ]; - - ldflags = [ - "-w" - "-s" - ]; - - 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 ]; - mainProgram = "chainsaw"; - }; -} |