2013-07-06 01:56:42 -07:00
|
|
|
{ stdenv, fetchurl, pkgconfig, glib, gtk2, popt, babeltrace }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-11-14 15:15:15 -08:00
|
|
|
name = "lttv-1.5";
|
2013-07-06 01:56:42 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-03-24 22:04:25 -07:00
|
|
|
url = "https://lttng.org/files/packages/${name}.tar.bz2";
|
2013-11-14 15:15:15 -08:00
|
|
|
sha256 = "1faldxnh9dld5k0vxckwpqw241ya1r2zv286l6rpgqr500zqw7r1";
|
2013-07-06 01:56:42 -07:00
|
|
|
};
|
|
|
|
|
2017-09-05 14:26:13 -07:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ glib gtk2 popt babeltrace ];
|
2013-07-06 01:56:42 -07:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Graphical trace viewer for LTTng trace files";
|
2018-03-24 22:04:25 -07:00
|
|
|
homepage = https://lttng.org/;
|
2013-07-06 01:56:42 -07:00
|
|
|
# liblttvtraceread (ltt/ directory) is distributed under the GNU LGPL v2.1.
|
|
|
|
# The rest of the LTTV package is distributed under the GNU GPL v2.
|
2014-10-22 15:13:31 -07:00
|
|
|
license = with licenses; [ gpl2 lgpl21 ];
|
2013-07-06 01:56:42 -07:00
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.bjornfor ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|