1{ lib
2, stdenv
3, fetchFromGitHub
4, autoreconfHook
5}:
6
7stdenv.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}