mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 20:33:21 +00:00
28 lines
586 B
Nix
28 lines
586 B
Nix
{ 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;
|
|
};
|
|
}
|