lol
1{ stdenv, fetchurl, pkgconfig, glib, gtk2, popt, babeltrace }:
2
3stdenv.mkDerivation rec {
4 name = "lttv-1.5";
5
6 src = fetchurl {
7 url = "http://lttng.org/files/packages/${name}.tar.bz2";
8 sha256 = "1faldxnh9dld5k0vxckwpqw241ya1r2zv286l6rpgqr500zqw7r1";
9 };
10
11 buildInputs = [ pkgconfig glib gtk2 popt babeltrace ];
12
13 meta = with stdenv.lib; {
14 description = "Graphical trace viewer for LTTng trace files";
15 homepage = http://lttng.org/;
16 # liblttvtraceread (ltt/ directory) is distributed under the GNU LGPL v2.1.
17 # The rest of the LTTV package is distributed under the GNU GPL v2.
18 license = with licenses; [ gpl2 lgpl21 ];
19 platforms = platforms.linux;
20 maintainers = [ maintainers.bjornfor ];
21 };
22
23}