mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-23 14:13:35 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
90 lines
2.3 KiB
Nix
90 lines
2.3 KiB
Nix
{ stdenv, lib
|
|
, fetchurl
|
|
, pkg-config, meson, ninja, makeWrapper
|
|
, libbsd, numactl, libbpf, zlib, elfutils, jansson, openssl, libpcap, rdma-core
|
|
, doxygen, python3, pciutils
|
|
, withExamples ? []
|
|
, shared ? false
|
|
, machine ? (
|
|
if stdenv.hostPlatform.isx86_64 then "nehalem"
|
|
else if stdenv.hostPlatform.isAarch64 then "generic"
|
|
else null
|
|
)
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "dpdk";
|
|
version = "23.11";
|
|
|
|
src = fetchurl {
|
|
url = "https://fast.dpdk.org/rel/dpdk-${version}.tar.xz";
|
|
sha256 = "sha256-ZPpY/fyelRDo5BTjvt0WW9PUykZaIxsoAyP4PNU/2GU=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
makeWrapper
|
|
doxygen
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
python3
|
|
python3.pkgs.sphinx
|
|
python3.pkgs.pyelftools
|
|
];
|
|
buildInputs = [
|
|
jansson
|
|
libbpf
|
|
elfutils
|
|
libpcap
|
|
numactl
|
|
openssl.dev
|
|
zlib
|
|
python3
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
# Propagated to support current DPDK users in nixpkgs which statically link
|
|
# with the framework (e.g. odp-dpdk).
|
|
rdma-core
|
|
# Requested by pkg-config.
|
|
libbsd
|
|
];
|
|
|
|
postPatch = ''
|
|
patchShebangs config/arm buildtools
|
|
'';
|
|
|
|
mesonFlags = [
|
|
"-Dtests=false"
|
|
"-Denable_docs=true"
|
|
"-Ddeveloper_mode=disabled"
|
|
]
|
|
++ [(if shared then "-Ddefault_library=shared" else "-Ddefault_library=static")]
|
|
++ lib.optional (machine != null) "-Dmachine=${machine}"
|
|
++ lib.optional (withExamples != []) "-Dexamples=${builtins.concatStringsSep "," withExamples}";
|
|
|
|
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
|
|
|
|
wrapProgram $out/bin/dpdk-devbind.py \
|
|
--prefix PATH : "${lib.makeBinPath [ pciutils ]}"
|
|
'' + lib.optionalString (withExamples != []) ''
|
|
mkdir -p $examples/bin
|
|
find examples -type f -executable -exec install {} $examples/bin \;
|
|
'';
|
|
|
|
outputs =
|
|
[ "out" "doc" ]
|
|
++ lib.optional (withExamples != []) "examples";
|
|
|
|
meta = with lib; {
|
|
description = "Set of libraries and drivers for fast packet processing";
|
|
homepage = "http://dpdk.org/";
|
|
license = with licenses; [ lgpl21 gpl2Only bsd2 ];
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ magenbluten orivej mic92 zhaofengli ];
|
|
};
|
|
}
|