depot/third_party/nixpkgs/pkgs/tools/security/binbloom/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

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;
};
}