Merge pull request #176521 from erdnaxe/binbloom

binbloom: init at 2.0
This commit is contained in:
Sebastián Mancilla 2022-08-14 22:35:50 -04:00 committed by GitHub
commit ebf9bc0d58
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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

@ -282,6 +282,8 @@ with pkgs;
beyond-identity = callPackage ../tools/security/beyond-identity {};
binbloom = callPackage ../tools/security/binbloom {};
bingo = callPackage ../development/tools/bingo {};
binserve = callPackage ../servers/binserve {