54 lines
1.2 KiB
Nix
54 lines
1.2 KiB
Nix
{ lib, stdenv, fetchurl, autoreconfHook, pkg-config
|
|
, dpdk, libbpf, libconfig, libpcap, numactl, openssl, zlib, libbsd, libelf, jansson
|
|
}: let
|
|
dpdk_19_11 = dpdk.overrideAttrs (old: rec {
|
|
version = "19.11";
|
|
src = fetchurl {
|
|
url = "https://fast.dpdk.org/rel/dpdk-${version}.tar.xz";
|
|
sha256 = "sha256-RnEzlohDZ3uxwna7dKNFiqfAAswh4pXFHjvWVJexEqs=";
|
|
};
|
|
mesonFlags = old.mesonFlags ++ [
|
|
"-Denable_docs=false"
|
|
];
|
|
});
|
|
|
|
in stdenv.mkDerivation rec {
|
|
pname = "odp-dpdk";
|
|
version = "1.30.1.0_DPDK_19.11";
|
|
|
|
src = fetchurl {
|
|
url = "https://git.linaro.org/lng/odp-dpdk.git/snapshot/${pname}-${version}.tar.gz";
|
|
sha256 = "sha256-R3PsqQiHlHPzIYYWTVEC7Ikg3KR5I0jWGgftDA9Jj1o=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
];
|
|
buildInputs = [
|
|
dpdk_19_11
|
|
libconfig
|
|
libpcap
|
|
numactl
|
|
openssl
|
|
zlib
|
|
libbsd
|
|
libelf
|
|
jansson
|
|
libbpf
|
|
];
|
|
|
|
# binaries will segfault otherwise
|
|
dontStrip = true;
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
description = "Open Data Plane optimized for DPDK";
|
|
homepage = "https://www.opendataplane.org";
|
|
license = licenses.bsd3;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.abuibrahim ];
|
|
};
|
|
}
|