nixpkgs/pkgs/tools/networking/tracebox/default.nix

33 lines
885 B
Nix
Raw Normal View History

{ lib, stdenv, fetchzip, autoreconfHook, libcrafter, libpcap, lua }:
2015-05-08 11:19:31 +00:00
stdenv.mkDerivation rec {
pname = "tracebox";
2015-05-08 11:19:31 +00:00
version = "0.2";
src = fetchzip {
url = "https://github.com/tracebox/tracebox/archive/v${version}.zip";
sha256 = "0gxdapm6b5a41gymi1f0nr2kyz70vllnk10085yz3pq527gp9gns";
};
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ libcrafter lua ];
2015-05-08 11:19:31 +00:00
configureFlags = [ "--with-lua=yes" ];
2019-10-30 11:34:47 +00:00
NIX_LDFLAGS = "${libpcap}/lib/libpcap.so ${libcrafter}/lib/libcrafter.so";
2015-05-08 11:19:31 +00:00
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/";
2015-05-08 11:19:31 +00:00
description = "A middlebox detection tool";
2021-01-15 09:19:50 +00:00
license = lib.licenses.gpl2;
maintainers = [ ];
2015-05-08 11:19:31 +00:00
platforms = platforms.linux;
};
}