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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

70 lines
1.5 KiB
Nix
Raw Normal View History

2023-01-22 01:01:57 +00:00
{ stdenv
, lib
, fetchFromGitHub
, fetchpatch
, meson
, ninja
, pkg-config
, dpdk
, libbsd
, libpcap
, lua5_3
, numactl
, util-linux
, gtk2
, which
, withGtk ? false
}:
2016-06-01 23:41:25 +00:00
2019-12-04 11:00:00 +00:00
stdenv.mkDerivation rec {
pname = "pktgen";
2023-01-22 01:01:57 +00:00
version = "22.07.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}";
2023-01-22 01:01:57 +00:00
sha256 = "sha256-wBLGwVdn3ymUTVv7J/kbQYz4WNIgV246PHg51+FStUo=";
2016-06-01 23:41:25 +00:00
};
2023-01-22 01:01:57 +00:00
patches = [
(fetchpatch {
# Ealier DPDK deprecated some macros, which were finally removed in >= 22.11
url = "https://github.com/pktgen/Pktgen-DPDK/commit/089ef94ac04629f7380f5e618443bcacb2cef5ab.patch";
sha256 = "sha256-ITU/dIfu7QPpdIVYuCuDhDG9rVF+n8i1YYn9bFmQUME=";
})
];
nativeBuildInputs = [ meson ninja pkg-config ];
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
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";
postPatch = ''
2020-11-24 15:29:28 +00: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-01 23:41:25 +00:00
'';
meta = with lib; {
2016-06-01 23:41:25 +00:00
description = "Traffic generator powered by DPDK";
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 ];
};
}