nixpkgs/pkgs/os-specific/linux/pktgen/default.nix

46 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchurl, meson, ninja, pkg-config
2020-11-24 16:29:28 +01:00
, dpdk, libbsd, libpcap, lua5_3, numactl, util-linux
2019-08-07 07:05:03 +02:00
, gtk2, which, withGtk ? false
}:
2016-06-02 01:41:25 +02:00
2019-12-04 12:00:00 +01:00
stdenv.mkDerivation rec {
pname = "pktgen";
version = "19.12.0";
2016-06-02 01:41:25 +02:00
src = fetchurl {
2019-08-07 07:05:03 +02:00
url = "http://dpdk.org/browse/apps/pktgen-dpdk/snapshot/${pname}-${version}.tar.xz";
sha256 = "1clfviz1qa4hysslcg6i29vsxwl9f6j1y7zf9wwx9br3yq08x956";
2016-06-02 01:41:25 +02:00
};
nativeBuildInputs = [ meson ninja pkg-config ];
buildInputs =
[ dpdk libbsd libpcap lua5_3 numactl which ]
2021-01-15 15:45:37 +01:00
++ lib.optionals withGtk [gtk2];
2016-06-02 01:41:25 +02:00
RTE_SDK = dpdk;
2021-01-15 15:45:37 +01:00
GUI = lib.optionalString withGtk "true";
2016-06-02 01:41:25 +02:00
2019-10-30 03:23:29 +01:00
NIX_CFLAGS_COMPILE = "-msse3";
patches = [ ./configure.patch ];
postPatch = ''
2020-11-24 16:29:28 +01:00
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
2016-06-02 01:41:25 +02:00
'';
meta = with lib; {
2016-06-02 01:41:25 +02:00
description = "Traffic generator powered by DPDK";
homepage = "http://dpdk.org/";
2016-06-02 01:41:25 +02:00
license = licenses.bsdOriginal;
platforms = [ "x86_64-linux" ];
maintainers = [ maintainers.abuibrahim ];
};
}