binbloom: init at 2.0
This commit is contained in:
parent
a43da8cc8b
commit
0c127705a0
2 changed files with 29 additions and 0 deletions
27
pkgs/tools/security/binbloom/default.nix
Normal file
27
pkgs/tools/security/binbloom/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 {};
|
||||
|
|
Loading…
Reference in a new issue