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