mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
linuxPackages.bpftrace: fix llvm build
This commit is contained in:
parent
c07fad9b40
commit
0ef9059dd4
1 changed files with 2 additions and 2 deletions
|
@ -16,12 +16,12 @@ stdenv.mkDerivation rec {
|
|||
};
|
||||
|
||||
buildInputs = with llvmPackages;
|
||||
[ llvm clang-unwrapped
|
||||
[ llvm libclang
|
||||
kernel elfutils libelf bcc
|
||||
libbpf libbfd libopcodes
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ cmake pkg-config flex bison ]
|
||||
nativeBuildInputs = [ cmake pkg-config flex bison llvmPackages.llvm.dev ]
|
||||
# libelf is incompatible with elfutils-libelf
|
||||
++ lib.filter (x: x != libelf) kernel.moduleBuildDependencies;
|
||||
|
||||
|
|
Loading…
Reference in a new issue