2017-09-05 04:48:44 -07:00
|
|
|
{ stdenv, fetchurl, pkgconfig, glib, libuuid, popt, elfutils }:
|
2013-07-04 12:41:34 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-07-14 23:15:31 -07:00
|
|
|
name = "babeltrace-1.5.7";
|
2013-07-04 12:41:34 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 11:43:35 -07:00
|
|
|
url = "https://www.efficios.com/files/babeltrace/${name}.tar.bz2";
|
2019-07-14 23:15:31 -07:00
|
|
|
sha256 = "0yw05cnk5w8b5nbznycglyn4h3hq56a1n8rlb9k9rlzz4ph32lr1";
|
2013-07-04 12:41:34 -07:00
|
|
|
};
|
|
|
|
|
2017-09-05 14:26:13 -07:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ glib libuuid popt elfutils ];
|
2013-07-04 12:41:34 -07:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Command-line tool and library to read and convert LTTng tracefiles";
|
2017-09-05 04:48:44 -07:00
|
|
|
homepage = https://www.efficios.com/babeltrace;
|
2013-07-04 12:41:34 -07:00
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.bjornfor ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|