lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

lttng-modules: use kernel.moduleBuildDependencies

Instead of explicitly depending on libelf, use
kernel.moduleBuildDependencies which was introduced in 1e77d0b975ad
("kernel 4.14 require libelf to compile modules.").

+2 -2
+2 -2
pkgs/os-specific/linux/lttng-modules/default.nix
··· 1 - { stdenv, fetchurl, kernel, libelf }: 1 + { stdenv, fetchurl, kernel }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "lttng-modules-${version}"; ··· 10 10 sha256 = "07rs01zwr4bmjamplix5qz1c6mb6wdawb68vyn0w6wx68ppbpnxq"; 11 11 }; 12 12 13 - buildInputs = [ libelf ]; 13 + buildInputs = kernel.moduleBuildDependencies; 14 14 15 15 hardeningDisable = [ "pic" ]; 16 16