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

60 lines
1.6 KiB
Nix
Raw Normal View History

{ stdenv, lib, kernel, fetchurl, pkgconfig, numactl }:
let
kver = kernel.modDirVersion or null;
mod = kernel != null;
in stdenv.mkDerivation rec {
name = "dpdk-${version}" + lib.optionalString mod "-${kernel.version}";
2018-05-19 13:38:03 +03:00
version = "17.11.2";
src = fetchurl {
2017-01-01 03:22:52 +03:00
url = "http://fast.dpdk.org/rel/dpdk-${version}.tar.xz";
2018-05-19 13:38:03 +03:00
sha256 = "19m5l3jkrns8r1zbjb6ry18w50ff36kbl5b5g6pfcp9p57sfisd2";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ numactl ] ++ lib.optional mod kernel.moduleBuildDependencies;
RTE_KERNELDIR = if mod then "${kernel.dev}/lib/modules/${kver}/build" else "/var/empty";
RTE_TARGET = "x86_64-native-linuxapp-gcc";
# we need sse3 instructions to build
2018-05-19 13:38:03 +03:00
NIX_CFLAGS_COMPILE = [ "-msse3" ];
hardeningDisable = [ "pic" ];
postPatch = lib.optionalString (!mod) ''
# Do not build kernel modules.
cat >>config/defconfig_$RTE_TARGET <<EOF
CONFIG_RTE_EAL_IGB_UIO=n
CONFIG_RTE_KNI_KMOD=n
EOF
'';
configurePhase = ''
make T=${RTE_TARGET} config
'';
installTargets = [ "install-runtime" "install-sdk" "install-kmod" ]; # skip install-doc
installFlags = [
"prefix=$(out)" "datadir=$(out)" "includedir=$(out)/include"
] ++ lib.optionals mod [
"kerneldir=$(kmod)/lib/modules/${kver}"
];
outputs = [ "out" ] ++ lib.optional mod "kmod";
enableParallelBuilding = true;
meta = with lib; {
description = "Set of libraries and drivers for fast packet processing";
homepage = http://dpdk.org/;
license = with licenses; [ lgpl21 gpl2 bsd2 ];
2016-04-21 01:38:52 +03:00
platforms = [ "x86_64-linux" ];
maintainers = with maintainers; [ domenkozar orivej ];
};
}