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