nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 stdenv,
4 fetchFromGitHub,
5 autoreconfHook,
6}:
7
8stdenv.mkDerivation (finalAttrs: {
9 pname = "binbloom";
10 version = "2.1";
11
12 src = fetchFromGitHub {
13 owner = "quarkslab";
14 repo = "binbloom";
15 rev = "v${finalAttrs.version}";
16 hash = "sha256-ox4o9RPtqMsme//8dVatNUo+mA/6dM9eI/T5lsuSAus=";
17 };
18
19 nativeBuildInputs = [ autoreconfHook ];
20
21 meta = {
22 description = "Raw binary firmware analysis software";
23 mainProgram = "binbloom";
24 homepage = "https://github.com/quarkslab/binbloom";
25 license = lib.licenses.asl20;
26 maintainers = with lib.maintainers; [ erdnaxe ];
27 platforms = lib.platforms.linux;
28 };
29})