bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
28 lines
616 B
Nix
28 lines
616 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, autoreconfHook
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "binbloom";
|
|
version = "2.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "quarkslab";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-ox4o9RPtqMsme//8dVatNUo+mA/6dM9eI/T5lsuSAus=";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
meta = with lib; {
|
|
description = "Raw binary firmware analysis software";
|
|
mainProgram = "binbloom";
|
|
homepage = "https://github.com/quarkslab/binbloom";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ erdnaxe ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|