Files
nixpkgs/pkgs/by-name/pk/pktgen/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

76 lines
1.3 KiB
Nix

{
stdenv,
lib,
fetchFromGitHub,
meson,
ninja,
pkg-config,
dpdk,
libbsd,
libpcap,
lua5_3,
numactl,
util-linux,
gtk2,
which,
withGtk ? false,
}:
stdenv.mkDerivation rec {
pname = "pktgen";
version = "24.10.3";
src = fetchFromGitHub {
owner = "pktgen";
repo = "Pktgen-DPDK";
rev = "pktgen-${version}";
sha256 = "sha256-6KC1k+LWNSU/mdwcUKjCaq8pGOcO+dFzeXX4PJm0QgE=";
};
nativeBuildInputs = [
meson
ninja
pkg-config
];
buildInputs = [
dpdk
libbsd
libpcap
lua5_3
numactl
which
]
++ lib.optionals withGtk [
gtk2
];
RTE_SDK = dpdk;
GUI = lib.optionalString withGtk "true";
env.NIX_CFLAGS_COMPILE = toString [
"-Wno-error=sign-compare"
];
# requires symbols from this file
NIX_LDFLAGS = "-lrte_net_bond";
postPatch = ''
substituteInPlace lib/common/lscpu.h --replace /usr/bin/lscpu ${util-linux}/bin/lscpu
'';
postInstall = ''
# meson installs unneeded files with conflicting generic names, such as
# include/cli.h and lib/liblua.so.
rm -rf $out/include $out/lib
'';
meta = with lib; {
description = "Traffic generator powered by DPDK";
homepage = "http://dpdk.org/";
license = licenses.bsdOriginal;
platforms = platforms.linux;
maintainers = [ maintainers.abuibrahim ];
};
}