babeltrace: new package
Babeltrace is a command-line tool and library to read and convert LTTng tracefiles. Give it a (binary) trace file/dir path and it will print a human readable event log to standard out.
This commit is contained in:
parent
6a4f068b9e
commit
1eb38f2ccb
21
pkgs/development/tools/misc/babeltrace/default.nix
Normal file
21
pkgs/development/tools/misc/babeltrace/default.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{ stdenv, fetchurl, pkgconfig, glib, libuuid, popt }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "babeltrace-1.1.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.efficios.com/files/babeltrace/${name}.tar.bz2";
|
||||
sha256 = "04jc1yd3aaq59fmpzswzc78cywpq7wzjfqdlsg7xc76ivb8cggfz";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig glib libuuid popt ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Command-line tool and library to read and convert LTTng tracefiles";
|
||||
homepage = http://www.efficios.com/babeltrace;
|
||||
license = licenses.mit;
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ maintainers.bjornfor ];
|
||||
};
|
||||
|
||||
}
|
|
@ -3302,6 +3302,8 @@ let
|
|||
|
||||
avarice = callPackage ../development/tools/misc/avarice { };
|
||||
|
||||
babeltrace = callPackage ../development/tools/misc/babeltrace { };
|
||||
|
||||
bam = callPackage ../development/tools/build-managers/bam {};
|
||||
|
||||
binutils = callPackage ../development/tools/misc/binutils {
|
||||
|
|
Loading…
Reference in a new issue