bpftool: fix build

https://hydra.nixos.org/build/108688065
This commit is contained in:
Maximilian Bosch 2019-12-26 21:07:51 +01:00
parent fa28c7750a
commit 1ea4896ae9
No known key found for this signature in database
GPG Key ID: 091DBF4D1FC46B8E

View File

@ -1,13 +1,13 @@
{ stdenv
, libopcodes, libbfd, libelf
, linuxPackages_latest
, linuxPackages_latest, zlib
}:
stdenv.mkDerivation {
pname = "bpftool";
inherit (linuxPackages_latest.kernel) version src;
buildInputs = [ libopcodes libbfd libelf ];
buildInputs = [ libopcodes libbfd libelf zlib ];
preConfigure = ''
cd tools/bpf/bpftool