nixpkgs/pkgs/tools/networking/tracebox/default.nix
2015-05-08 13:20:27 +02:00

32 lines
903 B
Nix

{ stdenv, fetchzip, autoreconfHook, libcrafter, libpcap, lua }:
stdenv.mkDerivation rec {
name = "tracebox-${version}";
version = "0.2";
src = fetchzip {
url = "https://github.com/tracebox/tracebox/archive/v${version}.zip";
sha256 = "0gxdapm6b5a41gymi1f0nr2kyz70vllnk10085yz3pq527gp9gns";
};
buildInputs = [ autoreconfHook 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 stdenv.lib; {
homepage = http://www.tracebox.org/;
description = "A middlebox detection tool";
license = stdenv.lib.licenses.gpl2;
maintainers = [ maintainers.lethalman ];
platforms = platforms.linux;
};
}