2017-09-05 12:48:44 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, glib, libuuid, popt, elfutils }:
|
2013-07-04 20:41:34 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-02-07 02:57:08 +00:00
|
|
|
name = "babeltrace-1.5.8";
|
2013-07-04 20:41:34 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://www.efficios.com/files/babeltrace/${name}.tar.bz2";
|
2020-02-07 02:57:08 +00:00
|
|
|
sha256 = "1hkg3phnamxfrhwzmiiirbhdgckzfkqwhajl0lmr1wfps7j47wcz";
|
2013-07-04 20:41:34 +01:00
|
|
|
};
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ glib libuuid popt elfutils ];
|
2013-07-04 20:41:34 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Command-line tool and library to read and convert LTTng tracefiles";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.efficios.com/babeltrace";
|
2013-07-04 20:41:34 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.bjornfor ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|