2015-09-13 08:34:06 +00:00
|
|
|
{ stdenv, fetchurl, kernel }:
|
2013-07-04 20:34:32 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-10-14 19:12:23 +00:00
|
|
|
pname = "lttng-modules-${version}";
|
2014-01-05 01:57:21 +00:00
|
|
|
name = "${pname}-${kernel.version}";
|
2015-09-13 08:34:06 +00:00
|
|
|
version = "2.6.3";
|
2013-07-04 20:34:32 +00:00
|
|
|
|
2015-09-13 08:34:06 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://lttng.org/files/lttng-modules/lttng-modules-${version}.tar.bz2";
|
|
|
|
sha256 = "0sk7cyjf5ylmxqrrrz5zmmw4c0dmxh1f98aj870gmcnxfa76y4mx";
|
2013-07-04 20:34:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
preConfigure = ''
|
2014-01-05 01:57:21 +00:00
|
|
|
export KERNELDIR="${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"
|
2013-07-04 20:34:32 +00: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/;
|
2014-10-22 22:13:31 +00:00
|
|
|
license = with licenses; [ lgpl21 gpl2 mit ];
|
2013-07-04 20:34:32 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.bjornfor ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|