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

49 lines
1.2 KiB
Nix
Raw Normal View History

2021-05-24 08:40:49 +02:00
{ stdenv, lib, fetchFromGitHub, 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";
2021-12-09 03:21:56 +01:00
version = "21.11.0";
2016-06-02 01:41:25 +02:00
2021-05-24 08:40:49 +02:00
src = fetchFromGitHub {
owner = "pktgen";
repo = "Pktgen-DPDK";
rev = "pktgen-${version}";
2021-12-09 03:21:56 +01:00
sha256 = "sha256-3z5DSkggHTwjzsRzRG5zzZTcNsn/5YankJT8CKSN8b4=";
2016-06-02 01:41:25 +02:00
};
nativeBuildInputs = [ meson ninja pkg-config ];
2021-05-24 08:40:49 +02:00
buildInputs = [
dpdk libbsd libpcap lua5_3 numactl which
] ++ 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
2021-05-24 08:40:49 +02:00
# requires symbols from this file
NIX_LDFLAGS = "-lrte_net_bond";
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;
2021-12-09 03:21:56 +01:00
platforms = platforms.linux;
2016-06-02 01:41:25 +02:00
maintainers = [ maintainers.abuibrahim ];
};
}