nixpkgs/pkgs/tools/networking/tracebox/default.nix
Vladimír Čunát 73e17a3594
treewide: remove lethalman from meta.maintainers
He hasn't been heard of for years.
2021-05-07 15:36:40 +02:00

33 lines
885 B
Nix

{ lib, stdenv, fetchzip, autoreconfHook, libcrafter, libpcap, lua }:
stdenv.mkDerivation rec {
pname = "tracebox";
version = "0.2";
src = fetchzip {
url = "https://github.com/tracebox/tracebox/archive/v${version}.zip";
sha256 = "0gxdapm6b5a41gymi1f0nr2kyz70vllnk10085yz3pq527gp9gns";
};
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ libcrafter lua ];
configureFlags = [ "--with-lua=yes" ];
NIX_LDFLAGS = "${libpcap}/lib/libpcap.so ${libcrafter}/lib/libcrafter.so";
preAutoreconf = ''
substituteInPlace Makefile.am --replace "noinst" ""
sed '/noinst/d' -i configure.ac
sed '/libcrafter/d' -i src/tracebox/Makefile.am
'';
meta = with lib; {
homepage = "http://www.tracebox.org/";
description = "A middlebox detection tool";
license = lib.licenses.gpl2;
maintainers = [ ];
platforms = platforms.linux;
};
}