iproute: use elfutils instead of abandoned libelf (#301306)

This commit is contained in:
Philip Taron 2024-04-11 07:06:37 -07:00 committed by GitHub
parent 57e4ea002b
commit 94a214b95f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,6 +1,6 @@
{ lib, stdenv, fetchurl { lib, stdenv, fetchurl
, buildPackages, bison, flex, pkg-config , buildPackages, bison, flex, pkg-config
, db, iptables, libelf, libmnl , db, iptables, elfutils, libmnl
, gitUpdater , gitUpdater
}: }:
@ -46,7 +46,7 @@ stdenv.mkDerivation rec {
depsBuildBuild = [ buildPackages.stdenv.cc ]; # netem requires $HOSTCC depsBuildBuild = [ buildPackages.stdenv.cc ]; # netem requires $HOSTCC
nativeBuildInputs = [ bison flex pkg-config ]; nativeBuildInputs = [ bison flex pkg-config ];
buildInputs = [ db iptables libelf libmnl ]; buildInputs = [ db iptables elfutils libmnl ];
enableParallelBuilding = true; enableParallelBuilding = true;