Merge pull request #321962 from LostAttractor/iproute2/libbpf
This commit is contained in:
commit
e5fadeaa27
@ -221,3 +221,5 @@
|
||||
should be changed to using *runner authentication tokens* by configuring
|
||||
{option}`services.gitlab-runner.services.<name>.authenticationTokenConfigFile` instead of the former
|
||||
{option}`services.gitlab-runner.services.<name>.registrationConfigFile` option.
|
||||
|
||||
- `iproute2` now has libbpf support.
|
||||
|
@ -1,6 +1,6 @@
|
||||
{ lib, stdenv, fetchurl
|
||||
, buildPackages, bison, flex, pkg-config
|
||||
, db, iptables, elfutils, libmnl
|
||||
, db, iptables, elfutils, libmnl ,libbpf
|
||||
, gitUpdater
|
||||
}:
|
||||
|
||||
@ -47,7 +47,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
depsBuildBuild = [ buildPackages.stdenv.cc ]; # netem requires $HOSTCC
|
||||
nativeBuildInputs = [ bison flex pkg-config ];
|
||||
buildInputs = [ db iptables libmnl ]
|
||||
buildInputs = [ db iptables libmnl libbpf ]
|
||||
# needed to uploaded bpf programs
|
||||
++ lib.optionals (!stdenv.hostPlatform.isStatic) [ elfutils ];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user