Files
nixpkgs/pkgs/by-name/tr/tracebox/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

62 lines
1.1 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
autoreconfHook,
libpcap,
lua5_1,
json_c,
testers,
tracebox,
}:
stdenv.mkDerivation rec {
pname = "tracebox";
version = "0.4.4";
src = fetchFromGitHub {
owner = "tracebox";
repo = "tracebox";
tag = "v${version}";
hash = "sha256-1KBJ4uXa1XpzEw23IjndZg+aGJXk3PVw8LYKAvxbxCA=";
fetchSubmodules = true;
};
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [
libpcap
lua5_1
json_c
];
postPatch = ''
sed -i configure.ac \
-e 's,$(git describe .*),${version},'
'';
configureFlags = [
"--with-lua=yes"
"--with-libpcap=yes"
];
env = {
CXXFLAGS = "-std=c++14";
LUA_LIB = "-llua";
PCAPLIB = "-lpcap";
};
enableParallelBuilding = true;
passthru.tests.version = testers.testVersion {
package = tracebox;
command = "tracebox -V";
};
meta = with lib; {
homepage = "http://www.tracebox.org/";
description = "Middlebox detection tool";
license = licenses.gpl2Only;
maintainers = with maintainers; [ ck3d ];
platforms = platforms.linux;
};
}