mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
d515d72aba
* dpdk: fix a typo * dpdk: separate configure phase * odp-dpdk: 1.8.0.0 -> 1.10.1.0 * pktgen: 3.0.00 -> 3.0.04 * pktgen: add withGtk build option
49 lines
1.3 KiB
Nix
49 lines
1.3 KiB
Nix
{ stdenv, fetchurl, dpdk, libpcap, utillinux
|
|
, pkgconfig
|
|
, gtk, withGtk ? false
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "pktgen-${version}";
|
|
version = "3.0.04";
|
|
|
|
src = fetchurl {
|
|
url = "http://dpdk.org/browse/apps/pktgen-dpdk/snapshot/pktgen-${version}.tar.gz";
|
|
sha256 = "0vrmbpl8zaal5zjwyzlx0y3d6jydfxdmf0psdj7ic37h5yh2iv2q";
|
|
};
|
|
|
|
nativeBuildInputs = stdenv.lib.optionals withGtk [ pkgconfig ];
|
|
|
|
buildInputs =
|
|
[ dpdk libpcap ]
|
|
++ stdenv.lib.optionals withGtk [gtk];
|
|
|
|
RTE_SDK = "${dpdk}";
|
|
RTE_TARGET = "x86_64-native-linuxapp-gcc";
|
|
GUI = stdenv.lib.optionalString withGtk "true";
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
NIX_CFLAGS_COMPILE = [ "-march=core2" ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace lib/lua/src/luaconf.h --replace /usr/local $out
|
|
substituteInPlace lib/common/wr_lscpu.h --replace /usr/bin/lscpu ${utillinux}/bin/lscpu
|
|
'';
|
|
|
|
installPhase = ''
|
|
install -d $out/bin
|
|
install -m 0755 app/app/${RTE_TARGET}/app/pktgen $out/bin
|
|
install -d $out/lib/lua/5.3
|
|
install -m 0644 Pktgen.lua $out/lib/lua/5.3
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Traffic generator powered by DPDK";
|
|
homepage = http://dpdk.org/;
|
|
license = licenses.bsdOriginal;
|
|
platforms = [ "x86_64-linux" ];
|
|
maintainers = [ maintainers.abuibrahim ];
|
|
};
|
|
}
|