3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/os-specific/linux/pktgen/default.nix

47 lines
1.2 KiB
Nix
Raw Normal View History

2018-05-19 13:36:22 +01:00
{ stdenv, lib, fetchurl, pkgconfig
2019-08-07 06:05:03 +01:00
, dpdk, libpcap, lua5_3, numactl, utillinux
, gtk2, which, withGtk ? false
}:
2016-06-02 00:41:25 +01:00
2019-12-04 11:00:00 +00:00
stdenv.mkDerivation rec {
pname = "pktgen";
2019-08-07 06:05:03 +01:00
version = "3.7.2";
2016-06-02 00:41:25 +01:00
src = fetchurl {
2019-08-07 06:05:03 +01:00
url = "http://dpdk.org/browse/apps/pktgen-dpdk/snapshot/${pname}-${version}.tar.xz";
sha256 = "03k7h4j2lsrh6b7477hgn87ljrjh2673ncffx9v261bx1ns54y7w";
2016-06-02 00:41:25 +01:00
};
2019-08-07 06:05:03 +01:00
nativeBuildInputs = [ pkgconfig ];
buildInputs =
2019-08-07 06:05:03 +01:00
[ dpdk libpcap lua5_3 numactl which ]
++ stdenv.lib.optionals withGtk [gtk2];
2016-06-02 00:41:25 +01:00
RTE_SDK = "${dpdk}/share/dpdk";
2016-06-02 00:41:25 +01:00
RTE_TARGET = "x86_64-native-linuxapp-gcc";
GUI = stdenv.lib.optionalString withGtk "true";
2016-06-02 00:41:25 +01:00
2018-05-19 13:36:22 +01:00
NIX_CFLAGS_COMPILE = [ "-msse3" ];
2018-05-19 13:36:22 +01:00
postPatch = let dpdkMajor = lib.versions.major dpdk.version; in ''
substituteInPlace lib/common/lscpu.h --replace /usr/bin/lscpu ${utillinux}/bin/lscpu
'';
2016-06-02 00:41:25 +01:00
installPhase = ''
install -d $out/bin
2017-09-09 02:29:26 +01:00
install -m 0755 app/${RTE_TARGET}/pktgen $out/bin
2019-08-07 06:05:03 +01:00
install -m 0644 Pktgen.lua $out/bin
2016-06-02 00:41:25 +01:00
'';
2018-05-19 13:36:22 +01:00
enableParallelBuilding = true;
2016-06-02 00:41:25 +01: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 ];
};
}