2017-02-23 11:01:47 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, popt, libuuid, liburcu, lttng-ust, kmod, libxml2 }:
|
2013-07-04 21:38:23 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-02-23 11:01:47 +01:00
|
|
|
name = "lttng-tools-${version}";
|
2019-01-28 11:13:45 +01:00
|
|
|
version = "2.10.6";
|
2013-07-04 21:38:23 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://lttng.org/files/lttng-tools/${name}.tar.bz2";
|
2019-01-28 11:13:45 +01:00
|
|
|
sha256 = "0z2kh6svszi332012id373bjwzcmzj6fks993f6yi35zpqmzapgh";
|
2013-07-04 21:38:23 +02:00
|
|
|
};
|
|
|
|
|
2017-02-23 11:01:47 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ popt libuuid liburcu lttng-ust libxml2 kmod ];
|
2013-07-04 21:38:23 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Tracing tools (kernel + user space) for Linux";
|
2018-03-25 07:04:25 +02:00
|
|
|
homepage = https://lttng.org/;
|
2013-07-04 21:38:23 +02:00
|
|
|
license = licenses.lgpl21;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.bjornfor ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|