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
+2 -2
View File
@@ -1,13 +1,13 @@
{ stdenv { stdenv
, libopcodes, libbfd, libelf , libopcodes, libbfd, libelf
, linuxPackages_latest , linuxPackages_latest, zlib
}: }:
stdenv.mkDerivation { stdenv.mkDerivation {
pname = "bpftool"; pname = "bpftool";
inherit (linuxPackages_latest.kernel) version src; inherit (linuxPackages_latest.kernel) version src;
buildInputs = [ libopcodes libbfd libelf ]; buildInputs = [ libopcodes libbfd libelf zlib ];
preConfigure = '' preConfigure = ''
cd tools/bpf/bpftool cd tools/bpf/bpftool