2021-02-05 17:12:51 +00:00
|
|
|
{ stdenv, lib, fetchurl, meson, ninja, pkg-config
|
2020-11-24 20:58:05 +00:00
|
|
|
, dpdk, libbsd, libpcap, lua5_3, numactl, util-linux
|
2020-04-24 23:36:52 +00:00
|
|
|
, gtk2, which, withGtk ? false
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "pktgen";
|
|
|
|
version = "19.12.0";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://dpdk.org/browse/apps/pktgen-dpdk/snapshot/${pname}-${version}.tar.xz";
|
|
|
|
sha256 = "1clfviz1qa4hysslcg6i29vsxwl9f6j1y7zf9wwx9br3yq08x956";
|
|
|
|
};
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
nativeBuildInputs = [ meson ninja pkg-config ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildInputs =
|
|
|
|
[ dpdk libbsd libpcap lua5_3 numactl which ]
|
2021-02-05 17:12:51 +00:00
|
|
|
++ 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
|
|
|
|
|
|
|
NIX_CFLAGS_COMPILE = "-msse3";
|
|
|
|
|
|
|
|
patches = [ ./configure.patch ];
|
|
|
|
|
|
|
|
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;
|
|
|
|
platforms = [ "x86_64-linux" ];
|
|
|
|
maintainers = [ maintainers.abuibrahim ];
|
|
|
|
};
|
|
|
|
}
|