Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bulk_extractor: init at 1.6.0 #82265

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions pkgs/tools/misc/bulk-extractor/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{ stdenv, fetchFromGitHub, autoreconfHook, flex, openssl, zlib }:

stdenv.mkDerivation rec {
pname = "bulk_extractor";
version = "1.6.0";

src = fetchFromGitHub {
owner = "simsong";
repo = pname;
rev = "v${version}";
sha256 = "0z4zb508gdsblv5jxcnpkwnhll3m6850rdy5v829c0marf9wyc5c";
fetchSubmodules = true;
};

configureFlags = ["--disable-BEViewer"];

enableParallelBuilding = true;
nativeBuildInputs = [autoreconfHook];
buildInputs = [flex openssl zlib];

meta = with stdenv.lib; {
description = "A program for scanning and extracting useful information";
longDescription = ''
bulk_extractor is a C++ program that scans a disk image, a file, or a directory of files and extracts useful information without
parsing the file system or file system structures. The results are stored in feature files that can be easily inspected, parsed,
or processed with automated tools.
'';
homepage = "https://github.com/simsong/bulk_extractor";
downloadPage = "http://downloads.digitalcorpora.org/downloads/bulk_extractor/";
changelog = "https://github.com/simsong/bulk_extractor/blob/v${version}/ChangeLog";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ lightdiscord ];
platforms = ["x86_64-linux"];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -26507,6 +26507,8 @@ in

coz = callPackage ../development/tools/analysis/coz {};

bulk_extractor = callPackage ../tools/misc/bulk-extractor {};

keycard-cli = callPackage ../tools/security/keycard-cli {};

sieveshell = with python3.pkgs; toPythonApplication managesieve;
Expand Down