2021-01-23 04:26:19 -08:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, glib, libuuid, popt, elfutils }:
|
2013-07-04 12:41:34 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-02-06 18:57:08 -08:00
|
|
|
name = "babeltrace-1.5.8";
|
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";
|
2020-02-06 18:57:08 -08:00
|
|
|
sha256 = "1hkg3phnamxfrhwzmiiirbhdgckzfkqwhajl0lmr1wfps7j47wcz";
|
2013-07-04 12:41:34 -07:00
|
|
|
};
|
|
|
|
|
2021-01-18 22:50:56 -08:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2017-09-05 14:26:13 -07:00
|
|
|
buildInputs = [ glib libuuid popt elfutils ];
|
2013-07-04 12:41:34 -07:00
|
|
|
|
2021-01-23 04:26:19 -08:00
|
|
|
meta = with lib; {
|
2013-07-04 12:41:34 -07:00
|
|
|
description = "Command-line tool and library to read and convert LTTng tracefiles";
|
2020-03-31 18:11:51 -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 ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|