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 {
|
2018-02-24 21:40:44 -08:00
|
|
|
name = "babeltrace-1.5.4";
|
2013-07-04 12:41:34 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.efficios.com/files/babeltrace/${name}.tar.bz2";
|
2018-02-24 21:40:44 -08:00
|
|
|
sha256 = "1h8zi7afilbfx4jvdlhhgysj6x01w3799mdk4mdcgax04fch6hwn";
|
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 ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|