2021-05-24 06:40:49 +00:00
|
|
|
{ stdenv, lib, fetchFromGitHub, meson, ninja, pkg-config
|
2020-11-24 15:29:28 +00:00
|
|
|
, dpdk, libbsd, libpcap, lua5_3, numactl, util-linux
|
2019-08-07 05:05:03 +00:00
|
|
|
, gtk2, which, withGtk ? false
|
2016-06-29 08:34:17 +00:00
|
|
|
}:
|
2016-06-01 23:41:25 +00:00
|
|
|
|
2019-12-04 11:00:00 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "pktgen";
|
2022-05-23 13:24:40 +00:00
|
|
|
version = "22.04.1";
|
2016-06-01 23:41:25 +00:00
|
|
|
|
2021-05-24 06:40:49 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "pktgen";
|
|
|
|
repo = "Pktgen-DPDK";
|
|
|
|
rev = "pktgen-${version}";
|
2022-05-23 13:24:40 +00:00
|
|
|
sha256 = "0gbag98i2jq0p2hpvfgc3fiqy2sark1dm72hla4sxmn3gljy3p70";
|
2016-06-01 23:41:25 +00:00
|
|
|
};
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ meson ninja pkg-config ];
|
2016-06-29 08:34:17 +00:00
|
|
|
|
2021-05-24 06:40:49 +00:00
|
|
|
buildInputs = [
|
|
|
|
dpdk libbsd libpcap lua5_3 numactl which
|
|
|
|
] ++ lib.optionals withGtk [
|
|
|
|
gtk2
|
|
|
|
];
|
2016-06-01 23:41:25 +00:00
|
|
|
|
2019-12-23 07:17:02 +00:00
|
|
|
RTE_SDK = dpdk;
|
2021-01-15 14:45:37 +00:00
|
|
|
GUI = lib.optionalString withGtk "true";
|
2016-06-01 23:41:25 +00:00
|
|
|
|
2021-05-24 06:40:49 +00:00
|
|
|
# requires symbols from this file
|
|
|
|
NIX_LDFLAGS = "-lrte_net_bond";
|
2019-12-23 07:17:02 +00:00
|
|
|
|
|
|
|
postPatch = ''
|
2020-11-24 15:29:28 +00:00
|
|
|
substituteInPlace lib/common/lscpu.h --replace /usr/bin/lscpu ${util-linux}/bin/lscpu
|
2017-01-01 23:37:59 +00:00
|
|
|
'';
|
|
|
|
|
2019-12-23 07:17:02 +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
|
2016-06-01 23:41:25 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2016-06-01 23:41:25 +00:00
|
|
|
description = "Traffic generator powered by DPDK";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://dpdk.org/";
|
2016-06-01 23:41:25 +00:00
|
|
|
license = licenses.bsdOriginal;
|
2021-12-09 02:21:56 +00:00
|
|
|
platforms = platforms.linux;
|
2016-06-01 23:41:25 +00:00
|
|
|
maintainers = [ maintainers.abuibrahim ];
|
|
|
|
};
|
|
|
|
}
|