2023-02-02 18:25:31 +00:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
|
|
|
, fetchFromGitHub
|
|
|
|
, meson
|
|
|
|
, ninja
|
|
|
|
, pkg-config
|
|
|
|
, dpdk
|
|
|
|
, libbsd
|
|
|
|
, libpcap
|
|
|
|
, lua5_3
|
|
|
|
, numactl
|
|
|
|
, util-linux
|
|
|
|
, gtk2
|
|
|
|
, which
|
|
|
|
, withGtk ? false
|
2020-04-24 23:36:52 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "pktgen";
|
2024-04-21 15:54:59 +00:00
|
|
|
version = "23.10.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-05-28 09:39:13 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "pktgen";
|
|
|
|
repo = "Pktgen-DPDK";
|
|
|
|
rev = "pktgen-${version}";
|
2024-04-21 15:54:59 +00:00
|
|
|
sha256 = "sha256-eujVEU+XkxF1kIGQJoBW3oXXNSqBEzx6mwR2XYoHinM=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
nativeBuildInputs = [ meson ninja pkg-config ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-05-28 09:39:13 +00:00
|
|
|
buildInputs = [
|
|
|
|
dpdk libbsd libpcap lua5_3 numactl which
|
|
|
|
] ++ lib.optionals withGtk [
|
|
|
|
gtk2
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
RTE_SDK = dpdk;
|
2021-02-05 17:12:51 +00:00
|
|
|
GUI = lib.optionalString withGtk "true";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2023-03-04 12:14:45 +00:00
|
|
|
env.NIX_CFLAGS_COMPILE = toString [
|
2024-04-21 15:54:59 +00:00
|
|
|
"-Wno-error=sign-compare"
|
2023-02-16 17:41:37 +00:00
|
|
|
];
|
|
|
|
|
2021-05-28 09:39:13 +00:00
|
|
|
# requires symbols from this file
|
|
|
|
NIX_LDFLAGS = "-lrte_net_bond";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
postPatch = ''
|
2020-11-24 20:58:05 +00:00
|
|
|
substituteInPlace lib/common/lscpu.h --replace /usr/bin/lscpu ${util-linux}/bin/lscpu
|
2020-04-24 23:36:52 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
# meson installs unneeded files with conflicting generic names, such as
|
|
|
|
# include/cli.h and lib/liblua.so.
|
|
|
|
rm -rf $out/include $out/lib
|
|
|
|
'';
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Traffic generator powered by DPDK";
|
|
|
|
homepage = "http://dpdk.org/";
|
|
|
|
license = licenses.bsdOriginal;
|
2021-12-19 01:06:50 +00:00
|
|
|
platforms = platforms.linux;
|
2020-04-24 23:36:52 +00:00
|
|
|
maintainers = [ maintainers.abuibrahim ];
|
|
|
|
};
|
|
|
|
}
|