Merge pull request #176521 from erdnaxe/binbloom

binbloom: init at 2.0

authored by Sebastián Mancilla and committed by GitHub ebf9bc0d 5478fa77

+29
+27
pkgs/tools/security/binbloom/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , autoreconfHook 5 + }: 6 + 7 + stdenv.mkDerivation rec { 8 + pname = "binbloom"; 9 + version = "2.0"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "quarkslab"; 13 + repo = pname; 14 + rev = "v${version}"; 15 + hash = "sha256-UiKiDey/pHtJDr4UYqt+T/TneKig5tT8YU2u98Ttjmo="; 16 + }; 17 + 18 + nativeBuildInputs = [ autoreconfHook ]; 19 + 20 + meta = with lib; { 21 + description = "Raw binary firmware analysis software"; 22 + homepage = "https://github.com/quarkslab/binbloom"; 23 + license = licenses.asl20; 24 + maintainers = with maintainers; [ erdnaxe ]; 25 + platforms = platforms.linux; 26 + }; 27 + }
+2
pkgs/top-level/all-packages.nix
··· 282 282 283 283 beyond-identity = callPackage ../tools/security/beyond-identity {}; 284 284 285 + binbloom = callPackage ../tools/security/binbloom {}; 286 + 285 287 bingo = callPackage ../development/tools/bingo {}; 286 288 287 289 binserve = callPackage ../servers/binserve {