binbloom: init at 2.0

This commit is contained in:
Alexandre Iooss 2022-06-06 10:00:29 +02:00
parent a43da8cc8b
commit 0c127705a0
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ lib
, stdenv
, fetchFromGitHub
, autoreconfHook
}:
stdenv.mkDerivation rec {
pname = "binbloom";
version = "2.0";
src = fetchFromGitHub {
owner = "quarkslab";
repo = pname;
rev = "v${version}";
hash = "sha256-UiKiDey/pHtJDr4UYqt+T/TneKig5tT8YU2u98Ttjmo=";
};
nativeBuildInputs = [ autoreconfHook ];
meta = with lib; {
description = "Raw binary firmware analysis software";
homepage = "https://github.com/quarkslab/binbloom";
license = licenses.asl20;
maintainers = with maintainers; [ erdnaxe ];
platforms = platforms.linux;
};
}

View file

@ -256,6 +256,8 @@ with pkgs;
beyond-identity = callPackage ../tools/security/beyond-identity {};
binbloom = callPackage ../tools/security/binbloom {};
bingo = callPackage ../development/tools/bingo {};
bootstrap-studio = callPackage ../development/web/bootstrap-studio {};