2021-01-23 04:26:19 -08:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, popt, libuuid, liburcu, lttng-ust, kmod, libxml2 }:
|
2013-07-04 12:38:23 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "lttng-tools";
|
2019-11-02 04:25:39 -07:00
|
|
|
version = "2.11.0";
|
2013-07-04 12:38:23 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 05:41:18 -07:00
|
|
|
url = "https://lttng.org/files/lttng-tools/${pname}-${version}.tar.bz2";
|
2019-11-02 04:25:39 -07:00
|
|
|
sha256 = "1g0g7ypxvc7wd5x4d4ixmfgl9yk0lxax3ymm95hcjwxn5p497r6w";
|
2013-07-04 12:38:23 -07:00
|
|
|
};
|
|
|
|
|
2021-01-18 22:50:56 -08:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2017-02-23 02:01:47 -08:00
|
|
|
buildInputs = [ popt libuuid liburcu lttng-ust libxml2 kmod ];
|
2013-07-04 12:38:23 -07:00
|
|
|
|
2021-01-23 04:26:19 -08:00
|
|
|
meta = with lib; {
|
2013-07-04 12:38:23 -07:00
|
|
|
description = "Tracing tools (kernel + user space) for Linux";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://lttng.org/";
|
2013-07-04 12:38:23 -07:00
|
|
|
license = licenses.lgpl21;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.bjornfor ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|