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}";
|
2018-01-31 20:00:32 +00:00
|
|
|
version = "2.10.5";
|
2013-07-04 21:34:32 +01:00
|
|
|
|
2015-09-13 09:34:06 +01:00
|
|
|
src = fetchurl {
|
2018-03-25 06:04:25 +01:00
|
|
|
url = "https://lttng.org/files/lttng-modules/lttng-modules-${version}.tar.bz2";
|
2018-01-31 20:00:32 +00:00
|
|
|
sha256 = "07rs01zwr4bmjamplix5qz1c6mb6wdawb68vyn0w6wx68ppbpnxq";
|
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";
|
2018-03-25 06:04:25 +01:00
|
|
|
homepage = https://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-15 12:29:03 +01:00
|
|
|
broken = builtins.compareVersions kernel.version "3.18" == -1
|
|
|
|
|| builtins.compareVersions kernel.version "4.11" == 1;
|
2013-07-04 21:34:32 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|