summary refs log tree commit diff
path: root/pkgs/os-specific/linux/dpdk
diff options
context:
space:
mode:
authorNikolay Amiantov <ab@fmap.me>2022-01-25 23:28:25 +0900
committerNikolay Amiantov <ab@fmap.me>2022-01-26 03:29:10 +0300
commitd15130584f974f9d8a7680f4da713d0889599040 (patch)
tree2506360d439be9614dbf2af1431b4e1af9a0e19a /pkgs/os-specific/linux/dpdk
parent5ab992b43add5fd936804ce863cf7d3c2aa53914 (diff)
downloadnixpkgs-d15130584f974f9d8a7680f4da713d0889599040.tar
nixpkgs-d15130584f974f9d8a7680f4da713d0889599040.tar.gz
nixpkgs-d15130584f974f9d8a7680f4da713d0889599040.tar.bz2
nixpkgs-d15130584f974f9d8a7680f4da713d0889599040.tar.lz
nixpkgs-d15130584f974f9d8a7680f4da713d0889599040.tar.xz
nixpkgs-d15130584f974f9d8a7680f4da713d0889599040.tar.zst
nixpkgs-d15130584f974f9d8a7680f4da713d0889599040.zip
dpdk: move libbsd to propagated inputs
It is required in pkgconfig file.
Diffstat (limited to 'pkgs/os-specific/linux/dpdk')
-rw-r--r--pkgs/os-specific/linux/dpdk/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/os-specific/linux/dpdk/default.nix b/pkgs/os-specific/linux/dpdk/default.nix
index 1ec3d552fb3..86049eca01d 100644
--- a/pkgs/os-specific/linux/dpdk/default.nix
+++ b/pkgs/os-specific/linux/dpdk/default.nix
@@ -31,7 +31,6 @@ in stdenv.mkDerivation rec {
   buildInputs = [
     jansson
     libbpf
-    libbsd
     libelf
     libpcap
     numactl
@@ -40,10 +39,12 @@ in stdenv.mkDerivation rec {
     python3
   ] ++ lib.optionals mod kernel.moduleBuildDependencies;
 
-  # Propagated to support current DPDK users in nixpkgs which statically link
-  # with the framework (e.g. odp-dpdk).
   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 = ''