2019-11-10 00:46:26 +00:00
|
|
|
{ stdenv, lib
|
|
|
|
, kernel
|
|
|
|
, fetchurl
|
2022-01-26 14:29:01 +00:00
|
|
|
, pkg-config, meson, ninja, makeWrapper
|
2021-12-09 00:59:10 +00:00
|
|
|
, libbsd, numactl, libbpf, zlib, libelf, jansson, openssl, libpcap, rdma-core
|
2022-01-26 14:29:01 +00:00
|
|
|
, doxygen, python3, pciutils
|
2021-07-23 06:25:30 +00:00
|
|
|
, withExamples ? []
|
2019-11-10 00:46:26 +00:00
|
|
|
, shared ? false }:
|
2016-04-20 15:11:34 +00:00
|
|
|
|
2018-05-20 22:43:35 +00:00
|
|
|
let
|
|
|
|
mod = kernel != null;
|
2022-10-08 14:47:17 +00:00
|
|
|
dpdkVersion = "22.07";
|
2018-05-20 22:43:35 +00:00
|
|
|
in stdenv.mkDerivation rec {
|
2021-05-11 14:02:37 +00:00
|
|
|
pname = "dpdk";
|
|
|
|
version = "${dpdkVersion}" + lib.optionalString mod "-${kernel.version}";
|
2016-04-20 15:11:34 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-05-11 14:02:37 +00:00
|
|
|
url = "https://fast.dpdk.org/rel/dpdk-${dpdkVersion}.tar.xz";
|
2022-10-08 14:47:17 +00:00
|
|
|
sha256 = "sha256-n2Tf3gdf21cIy2Leg4uP+4kVdf7R4dKusma6yj38m+o=";
|
2016-04-20 15:11:34 +00:00
|
|
|
};
|
|
|
|
|
2019-11-10 00:46:26 +00:00
|
|
|
nativeBuildInputs = [
|
2022-01-26 14:29:01 +00:00
|
|
|
makeWrapper
|
2019-11-10 00:46:26 +00:00
|
|
|
doxygen
|
|
|
|
meson
|
|
|
|
ninja
|
2021-01-19 06:50:56 +00:00
|
|
|
pkg-config
|
2019-11-10 00:46:26 +00:00
|
|
|
python3
|
|
|
|
python3.pkgs.sphinx
|
2021-05-11 14:02:37 +00:00
|
|
|
python3.pkgs.pyelftools
|
2019-11-10 00:46:26 +00:00
|
|
|
];
|
|
|
|
buildInputs = [
|
|
|
|
jansson
|
|
|
|
libbpf
|
|
|
|
libelf
|
|
|
|
libpcap
|
|
|
|
numactl
|
|
|
|
openssl.dev
|
|
|
|
zlib
|
2022-01-17 12:50:14 +00:00
|
|
|
python3
|
2019-11-10 00:46:26 +00:00
|
|
|
] ++ lib.optionals mod kernel.moduleBuildDependencies;
|
2016-05-31 12:35:54 +00:00
|
|
|
|
2021-12-09 08:28:18 +00:00
|
|
|
propagatedBuildInputs = [
|
2022-01-25 14:28:25 +00:00
|
|
|
# Propagated to support current DPDK users in nixpkgs which statically link
|
|
|
|
# with the framework (e.g. odp-dpdk).
|
2021-12-09 08:28:18 +00:00
|
|
|
rdma-core
|
2022-01-25 14:28:25 +00:00
|
|
|
# Requested by pkg-config.
|
|
|
|
libbsd
|
2021-12-09 08:28:18 +00:00
|
|
|
];
|
|
|
|
|
2018-05-21 02:32:18 +00:00
|
|
|
postPatch = ''
|
2020-06-30 10:40:58 +00:00
|
|
|
patchShebangs config/arm buildtools
|
2022-01-25 15:17:18 +00:00
|
|
|
'' + lib.optionalString mod ''
|
|
|
|
# kernel_install_dir is hardcoded to `/lib/modules`; patch that.
|
|
|
|
sed -i "s,kernel_install_dir *= *['\"].*,kernel_install_dir = '$kmod/lib/modules/${kernel.modDirVersion}'," kernel/linux/meson.build
|
2018-05-20 22:43:35 +00:00
|
|
|
'';
|
|
|
|
|
2019-11-10 00:46:26 +00:00
|
|
|
mesonFlags = [
|
2021-05-11 14:02:37 +00:00
|
|
|
"-Dtests=false"
|
2019-11-10 00:46:26 +00:00
|
|
|
"-Denable_docs=true"
|
2020-10-13 23:46:17 +00:00
|
|
|
"-Denable_kmods=${lib.boolToString mod}"
|
2019-11-10 00:46:26 +00:00
|
|
|
]
|
2021-05-11 14:02:37 +00:00
|
|
|
# kni kernel driver is currently not compatble with 5.11
|
|
|
|
++ lib.optional (mod && kernel.kernelOlder "5.11") "-Ddisable_drivers=kni"
|
2019-12-23 08:49:35 +00:00
|
|
|
++ lib.optional (!shared) "-Ddefault_library=static"
|
2019-11-10 00:46:26 +00:00
|
|
|
++ lib.optional stdenv.isx86_64 "-Dmachine=nehalem"
|
2021-12-09 01:23:00 +00:00
|
|
|
++ lib.optional stdenv.isAarch64 "-Dmachine=generic"
|
2022-01-25 15:17:18 +00:00
|
|
|
++ lib.optional mod "-Dkernel_dir=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"
|
2021-07-23 06:25:30 +00:00
|
|
|
++ lib.optional (withExamples != []) "-Dexamples=${builtins.concatStringsSep "," withExamples}";
|
2019-12-23 08:49:35 +00:00
|
|
|
|
2021-12-09 01:17:41 +00:00
|
|
|
postInstall = ''
|
|
|
|
# Remove Sphinx cache files. Not only are they not useful, but they also
|
|
|
|
# contain store paths causing spurious dependencies.
|
|
|
|
rm -rf $out/share/doc/dpdk/html/.doctrees
|
2022-01-26 14:29:01 +00:00
|
|
|
|
|
|
|
wrapProgram $out/bin/dpdk-devbind.py \
|
|
|
|
--prefix PATH : "${lib.makeBinPath [ pciutils ]}"
|
2021-12-09 01:17:41 +00:00
|
|
|
'' + lib.optionalString (withExamples != []) ''
|
2022-01-26 14:29:01 +00:00
|
|
|
mkdir -p $examples/bin
|
|
|
|
find examples -type f -executable -exec install {} $examples/bin \;
|
2021-07-23 06:25:30 +00:00
|
|
|
'';
|
|
|
|
|
2022-01-26 14:29:01 +00:00
|
|
|
outputs =
|
|
|
|
[ "out" "doc" ]
|
|
|
|
++ lib.optional mod "kmod"
|
|
|
|
++ lib.optional (withExamples != []) "examples";
|
2018-05-20 22:43:35 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
2016-04-20 15:11:34 +00:00
|
|
|
description = "Set of libraries and drivers for fast packet processing";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://dpdk.org/";
|
2016-04-20 15:11:34 +00:00
|
|
|
license = with licenses; [ lgpl21 gpl2 bsd2 ];
|
2019-11-10 00:46:26 +00:00
|
|
|
platforms = platforms.linux;
|
2021-07-23 06:25:30 +00:00
|
|
|
maintainers = with maintainers; [ magenbluten orivej mic92 zhaofengli ];
|
2022-10-31 12:40:58 +00:00
|
|
|
broken = mod && kernel.isHardened;
|
2016-04-20 15:11:34 +00:00
|
|
|
};
|
|
|
|
}
|