iproute: add libmnl to build rdma utility

This commit is contained in:
Markus Kowalewski 2020-02-25 23:28:46 +01:00
parent e661d071f5
commit ae91282545
No known key found for this signature in database
GPG Key ID: D865C8A91D7025EB

View File

@ -1,4 +1,4 @@
{ fetchurl, stdenv, flex, bash, bison, db, iptables, pkgconfig, libelf }:
{ fetchurl, stdenv, flex, bash, bison, db, iptables, pkgconfig, libelf, libmnl }:
stdenv.mkDerivation rec {
pname = "iproute2";
@ -36,7 +36,7 @@ stdenv.mkDerivation rec {
"CONFDIR=$(out)/etc/iproute2"
];
buildInputs = [ db iptables libelf ];
buildInputs = [ db iptables libelf libmnl ];
nativeBuildInputs = [ bison flex pkgconfig ];
enableParallelBuilding = true;