9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
46 lines
1.2 KiB
Nix
46 lines
1.2 KiB
Nix
{ stdenv, lib, fetchurl, meson, ninja, pkg-config
|
|
, dpdk, libbsd, libpcap, lua5_3, numactl, util-linux
|
|
, 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";
|
|
};
|
|
|
|
nativeBuildInputs = [ meson ninja pkg-config ];
|
|
|
|
buildInputs =
|
|
[ dpdk libbsd libpcap lua5_3 numactl which ]
|
|
++ lib.optionals withGtk [gtk2];
|
|
|
|
RTE_SDK = dpdk;
|
|
GUI = lib.optionalString withGtk "true";
|
|
|
|
NIX_CFLAGS_COMPILE = "-msse3";
|
|
|
|
patches = [ ./configure.patch ];
|
|
|
|
postPatch = ''
|
|
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
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Traffic generator powered by DPDK";
|
|
homepage = "http://dpdk.org/";
|
|
license = licenses.bsdOriginal;
|
|
platforms = [ "x86_64-linux" ];
|
|
maintainers = [ maintainers.abuibrahim ];
|
|
};
|
|
}
|