2014-01-05 02:57:21 +01:00
|
|
|
{ stdenv, fetchurl, kernel }:
|
2013-07-04 22:34:32 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-09-05 22:46:07 +02:00
|
|
|
pname = "lttng-modules-2.3.0";
|
2014-01-05 02:57:21 +01:00
|
|
|
name = "${pname}-${kernel.version}";
|
2013-07-04 22:34:32 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://lttng.org/files/lttng-modules/${pname}.tar.bz2";
|
2013-09-05 22:46:07 +02:00
|
|
|
sha256 = "0l9fbmpsjvm5pbrc6axy8chdp21j4b8fm0hmjhpk658ll0iixmpb";
|
2013-07-04 22:34:32 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
patches = [ ./lttng-fix-build-error-on-linux-3.2.patch ];
|
|
|
|
|
|
|
|
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"
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
make modules_install
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Linux kernel modules for LTTng tracing";
|
|
|
|
homepage = http://lttng.org/;
|
2013-08-11 20:35:44 +02:00
|
|
|
# TODO: Add "mit" to the license list once the license attr set vs string
|
|
|
|
# decision has been made. (Having "mit" there breaks hydra evaluation.)
|
|
|
|
license = with licenses; [ lgpl21 gpl2 ];
|
2013-07-04 22:34:32 +02:00
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.bjornfor ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|