lttng-modules: add 'libelf' to fix build against linux 4.14

Fixes this:

$ nix-build -A linuxPackages.lttng-modules
[...]
/nix/store/...-linux-4.14.48-dev/lib/modules/4.14.48/source/Makefile:948: \
  *** "Cannot generate ORC metadata for CONFIG_UNWINDER_ORC=y, please install libelf-dev, libelf-devel or elfu

(Linux 4.16+ has other issues, so mark as broken.)
This commit is contained in:
Bjørn Forsman 2018-06-07 12:44:56 +02:00
parent ca6569c96a
commit 0f8594170a

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, kernel }:
{ stdenv, fetchurl, kernel, libelf }:
stdenv.mkDerivation rec {
pname = "lttng-modules-${version}";
@ -10,6 +10,8 @@ stdenv.mkDerivation rec {
sha256 = "07rs01zwr4bmjamplix5qz1c6mb6wdawb68vyn0w6wx68ppbpnxq";
};
buildInputs = [ libelf ];
hardeningDisable = [ "pic" ];
NIX_CFLAGS_COMPILE = [ "-Wno-error=implicit-function-declaration" ];
@ -30,7 +32,7 @@ stdenv.mkDerivation rec {
platforms = platforms.linux;
maintainers = [ maintainers.bjornfor ];
broken = builtins.compareVersions kernel.version "3.18" == -1
|| builtins.compareVersions kernel.version "4.11" == 1;
|| builtins.compareVersions kernel.version "4.16" == 1;
};
}