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

65 lines
1.8 KiB
Nix
Raw Normal View History

2018-05-19 14:36:22 +02:00
{ stdenv, lib, fetchurl, pkgconfig
, dpdk, libpcap, numactl, utillinux
, gtk2, withGtk ? false
}:
2016-06-02 01:41:25 +02:00
2018-05-19 14:36:22 +02:00
let
# pktgen needs a specific version of lua to apply its patch (see lib/lua/Makefile).
lua = rec {
name = "lua-5.3.4";
basename = name + ".tar.gz";
src = fetchurl {
url = "https://www.lua.org/ftp/${basename}";
sha256 = "0320a8dg3aci4hxla380dx1ifkw8gj4gbw5c4dz41g1kh98sm0gn";
};
};
in stdenv.mkDerivation rec {
2016-06-02 01:41:25 +02:00
name = "pktgen-${version}";
2018-05-19 14:36:22 +02:00
version = "3.5.0";
2016-06-02 01:41:25 +02:00
src = fetchurl {
2018-05-19 14:36:22 +02:00
url = "http://dpdk.org/browse/apps/pktgen-dpdk/snapshot/pktgen-${version}.tar.xz";
sha256 = "1gy99jr9dbwzi9pd3w5k673h3pfnbkz6rbzmrkwcyis72pnphy5z";
2016-06-02 01:41:25 +02:00
};
nativeBuildInputs = stdenv.lib.optionals withGtk [ pkgconfig ];
buildInputs =
2018-05-19 14:36:22 +02:00
[ dpdk libpcap numactl ]
++ stdenv.lib.optionals withGtk [gtk2];
2016-06-02 01:41:25 +02:00
RTE_SDK = "${dpdk}/share/dpdk";
2016-06-02 01:41:25 +02:00
RTE_TARGET = "x86_64-native-linuxapp-gcc";
GUI = stdenv.lib.optionalString withGtk "true";
2016-06-02 01:41:25 +02:00
2018-05-19 14:36:22 +02:00
NIX_CFLAGS_COMPILE = [ "-msse3" ];
2018-05-19 14:36:22 +02:00
postPatch = let dpdkMajor = lib.versions.major dpdk.version; in ''
substituteInPlace app/Makefile --replace 'yy :=' 'yy := ${dpdkMajor} #'
substituteInPlace lib/common/lscpu.h --replace /usr/bin/lscpu ${utillinux}/bin/lscpu
2018-05-19 14:36:22 +02:00
ln -s ${lua.src} lib/lua/${lua.basename}
make -C lib/lua get_tarball # unpack and patch
substituteInPlace lib/lua/${lua.name}/src/luaconf.h --replace /usr/local $out
'';
2016-06-02 01:41:25 +02:00
installPhase = ''
install -d $out/bin
2017-09-09 03:29:26 +02:00
install -m 0755 app/${RTE_TARGET}/pktgen $out/bin
2016-06-02 01:41:25 +02:00
install -d $out/lib/lua/5.3
install -m 0644 Pktgen.lua $out/lib/lua/5.3
'';
2018-05-19 14:36:22 +02:00
enableParallelBuilding = true;
2016-06-02 01:41:25 +02:00
meta = with stdenv.lib; {
description = "Traffic generator powered by DPDK";
homepage = http://dpdk.org/;
license = licenses.bsdOriginal;
platforms = [ "x86_64-linux" ];
maintainers = [ maintainers.abuibrahim ];
};
}