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

42 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, dpdk, libpcap, utillinux
, pkgconfig
, gtk2, withGtk ? false
}:
2016-06-01 23:41:25 +00:00
stdenv.mkDerivation rec {
name = "pktgen-${version}";
2017-01-01 00:43:11 +00:00
version = "3.1.0";
2016-06-01 23:41:25 +00:00
src = fetchurl {
2017-01-01 00:43:11 +00:00
url = "http://dpdk.org/browse/apps/pktgen-dpdk/snapshot/pktgen-v${version}.tar.gz";
sha256 = "1a1dl8h8p76wlcjlvn736mz4nc2nc5c3764rlydiz86wl45mb0nb";
2016-06-01 23:41:25 +00:00
};
nativeBuildInputs = stdenv.lib.optionals withGtk [ pkgconfig ];
buildInputs =
[ dpdk libpcap ]
++ stdenv.lib.optionals withGtk [gtk2];
2016-06-01 23:41:25 +00:00
RTE_SDK = "${dpdk}";
RTE_TARGET = "x86_64-native-linuxapp-gcc";
GUI = stdenv.lib.optionalString withGtk "true";
2016-06-01 23:41:25 +00:00
NIX_CFLAGS_COMPILE = [ "-march=core2" ];
2016-06-01 23:41:25 +00:00
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 ];
};
}