2017-07-16 09:06:21 +01:00
|
|
|
{ stdenv, fetchurl, liburcu, python }:
|
2013-07-04 20:32:12 +01:00
|
|
|
|
|
|
|
# NOTE:
|
|
|
|
# ./configure ...
|
|
|
|
# [...]
|
|
|
|
# LTTng-UST will be built with the following options:
|
2017-06-18 21:43:14 +01:00
|
|
|
#
|
2013-07-04 20:32:12 +01:00
|
|
|
# Java support (JNI): Disabled
|
|
|
|
# sdt.h integration: Disabled
|
|
|
|
# [...]
|
|
|
|
#
|
|
|
|
# Debian builds with std.h (systemtap).
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-02-23 10:01:55 +00:00
|
|
|
name = "lttng-ust-${version}";
|
2018-02-27 06:03:04 +00:00
|
|
|
version = "2.10.1";
|
2013-07-04 20:32:12 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://lttng.org/files/lttng-ust/${name}.tar.bz2";
|
2018-02-27 06:03:04 +00:00
|
|
|
sha256 = "17gfi1dn6bgg59qn4ihf8hag96lalx0g7dym2ccpzdz7f45krk07";
|
2013-07-04 20:32:12 +01:00
|
|
|
};
|
|
|
|
|
2018-02-06 13:28:00 +00:00
|
|
|
buildInputs = [ python ];
|
2017-07-16 09:06:21 +01:00
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
patchShebangs .
|
|
|
|
'';
|
2018-02-06 13:28:00 +00:00
|
|
|
|
|
|
|
propagatedBuildInputs = [ liburcu ];
|
2013-07-04 20:32:12 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "LTTng Userspace Tracer libraries";
|
|
|
|
homepage = http://lttng.org/;
|
|
|
|
license = licenses.lgpl21Plus;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.bjornfor ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|