2015-09-13 01:34:06 -07:00
|
|
|
{ stdenv, fetchurl, kernel }:
|
2013-07-04 13:34:32 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-10-14 12:12:23 -07:00
|
|
|
pname = "lttng-modules-${version}";
|
2014-01-04 17:57:21 -08:00
|
|
|
name = "${pname}-${kernel.version}";
|
2017-09-15 04:28:48 -07:00
|
|
|
version = "2.10.0";
|
2013-07-04 13:34:32 -07:00
|
|
|
|
2015-09-13 01:34:06 -07:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://lttng.org/files/lttng-modules/lttng-modules-${version}.tar.bz2";
|
2017-09-15 04:28:48 -07:00
|
|
|
sha256 = "1gzi7j97zymzfj6b7mlih35djflwfgg93b63q9rbs5w1kclmsrgz";
|
2013-07-04 13:34:32 -07:00
|
|
|
};
|
|
|
|
|
2016-02-26 09:38:15 -08:00
|
|
|
hardeningDisable = [ "pic" ];
|
2016-02-11 18:25:57 -08:00
|
|
|
|
2017-02-23 02:01:23 -08:00
|
|
|
NIX_CFLAGS_COMPILE = [ "-Wno-error=implicit-function-declaration" ];
|
2016-08-13 04:19:15 -07:00
|
|
|
|
2013-07-04 13:34:32 -07:00
|
|
|
preConfigure = ''
|
2014-01-04 17:57:21 -08:00
|
|
|
export KERNELDIR="${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"
|
2013-07-04 13:34:32 -07:00
|
|
|
export INSTALL_MOD_PATH="$out"
|
|
|
|
'';
|
|
|
|
|
2017-02-23 02:01:23 -08:00
|
|
|
installTargets = [ "modules_install" ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2013-07-04 13:34:32 -07:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Linux kernel modules for LTTng tracing";
|
|
|
|
homepage = http://lttng.org/;
|
2014-10-22 15:13:31 -07:00
|
|
|
license = with licenses; [ lgpl21 gpl2 mit ];
|
2013-07-04 13:34:32 -07:00
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.bjornfor ];
|
2017-09-15 04:29:03 -07:00
|
|
|
broken = builtins.compareVersions kernel.version "3.18" == -1
|
|
|
|
|| builtins.compareVersions kernel.version "4.11" == 1;
|
2013-07-04 13:34:32 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|