-
-
Notifications
You must be signed in to change notification settings - Fork 14.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5e5961a
commit 54c14e4
Showing
1 changed file
with
126 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,126 @@ | ||
{ | ||
lib, | ||
stdenv, | ||
fetchFromGitHub, | ||
nix-update-script, | ||
cmake, | ||
pkg-config, | ||
check, | ||
openssl, | ||
python3, | ||
subunit, | ||
mbedtls_2, | ||
libpcap, | ||
libnl, | ||
libmnl, | ||
libelf, | ||
dpdk, | ||
jansson, | ||
zlib, | ||
rdma-core, | ||
libbpf, | ||
xdp-tools, | ||
enableDpdk ? true, | ||
enableRdma ? true, | ||
# FIXME: broken: af_xdp plugins - no working libbpf found - af_xdp plugin disabled | ||
enableAfXdp ? false, | ||
}: | ||
|
||
let | ||
dpdk' = dpdk.overrideAttrs (old: { | ||
mesonFlags = old.mesonFlags ++ [ "-Denable_driver_sdk=true" ]; | ||
}); | ||
|
||
rdma-core' = rdma-core.overrideAttrs (old: { | ||
cmakeFlags = old.cmakeFlags ++ [ | ||
"-DENABLE_STATIC=1" | ||
"-DBUILD_SHARED_LIBS:BOOL=false" | ||
]; | ||
}); | ||
|
||
xdp-tools' = xdp-tools.overrideAttrs (old: { | ||
postInstall = ""; | ||
dontDisableStatic = true; | ||
}); | ||
in | ||
stdenv.mkDerivation rec { | ||
pname = "vpp"; | ||
version = "24.06"; | ||
|
||
src = fetchFromGitHub { | ||
owner = "FDio"; | ||
repo = "vpp"; | ||
rev = "v${version}"; | ||
hash = "sha256-AbdtH3ha/Bzj9tAkp4OhjRcUZilUEt+At0LukWN2LJU="; | ||
}; | ||
|
||
postPatch = '' | ||
patchShebangs scripts/ | ||
substituteInPlace CMakeLists.txt \ | ||
--replace "plugins tools/vppapigen tools/g2 tools/perftool cmake pkg" \ | ||
"plugins tools/vppapigen tools/g2 tools/perftool cmake" | ||
''; | ||
|
||
preConfigure = '' | ||
echo "${version}-nixos" > scripts/.version | ||
scripts/version | ||
''; | ||
|
||
postConfigure = '' | ||
patchShebangs ../tools/ | ||
patchShebangs ../vpp-api/ | ||
''; | ||
|
||
sourceRoot = "source/src"; | ||
|
||
enableParallelBuilding = true; | ||
env.NIX_CFLAGS_COMPILE = "-Wno-error -Wno-array-bounds -Wno-maybe-uninitialized"; | ||
|
||
cmakeFlags = [ | ||
"-DVPP_PLATFORM=default" | ||
"-DVPP_LIBRARY_DIR=lib" | ||
] ++ lib.optional enableDpdk "-DVPP_USE_SYSTEM_DPDK=ON"; | ||
|
||
nativeBuildInputs = [ | ||
cmake | ||
pkg-config | ||
] ++ lib.optional enableDpdk dpdk' ++ lib.optional enableRdma rdma-core'.dev; | ||
|
||
buildInputs = | ||
[ | ||
check | ||
openssl | ||
(python3.withPackages (ps: [ ps.ply ])) | ||
|
||
subunit # vapi tests | ||
mbedtls_2 # tlsmbed plugin | ||
libpcap # bpf_trace_filter plugin | ||
|
||
# linux-cp plugin | ||
libnl | ||
libmnl | ||
] | ||
++ lib.optionals enableDpdk [ | ||
# dpdk plugin | ||
libelf | ||
jansson | ||
zlib | ||
] | ||
++ lib.optionals enableAfXdp [ | ||
# af_xdp plugin | ||
libelf | ||
libbpf | ||
xdp-tools' | ||
]; | ||
|
||
passthru.updateScript = nix-update-script { }; | ||
|
||
meta = { | ||
description = "Fast, scalable layer 2-4 multi-platform network stack running in user space"; | ||
homepage = "https://s3-docs.fd.io/vpp/${version}/"; | ||
license = [ lib.licenses.asl20 ]; | ||
maintainers = with lib.maintainers; [ romner-set ]; | ||
mainProgram = "vpp"; | ||
platforms = lib.platforms.linux; | ||
}; | ||
} |