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