2017-02-23 10:01:47 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, popt, libuuid, liburcu, lttng-ust, kmod, libxml2 }:
|
2013-07-04 20:38:23 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "lttng-tools";
|
2019-10-22 12:46:28 +01:00
|
|
|
version = "2.10.8";
|
2013-07-04 20:38:23 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "https://lttng.org/files/lttng-tools/${pname}-${version}.tar.bz2";
|
2019-10-22 12:46:28 +01:00
|
|
|
sha256 = "03dkwvmiqbr7dcnrk8hw8xd9i0vrx6xxz8wal56mfypxz52i2jk6";
|
2013-07-04 20:38:23 +01:00
|
|
|
};
|
|
|
|
|
2017-02-23 10:01:47 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ popt libuuid liburcu lttng-ust libxml2 kmod ];
|
2013-07-04 20:38:23 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Tracing tools (kernel + user space) for Linux";
|
2018-03-25 06:04:25 +01:00
|
|
|
homepage = https://lttng.org/;
|
2013-07-04 20:38:23 +01:00
|
|
|
license = licenses.lgpl21;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.bjornfor ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|