nixpkgs/pkgs/development/tools/misc/babeltrace/default.nix

23 lines
653 B
Nix
Raw Normal View History

2017-09-05 12:48:44 +01:00
{ stdenv, fetchurl, pkgconfig, glib, libuuid, popt, elfutils }:
stdenv.mkDerivation rec {
name = "babeltrace-1.5.6";
src = fetchurl {
url = "https://www.efficios.com/files/babeltrace/${name}.tar.bz2";
sha256 = "1dxv2pwyqx2p7kzhcfansij40m9kanl85x2r68dmgp98g0hvq22k";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ glib libuuid popt elfutils ];
meta = with stdenv.lib; {
description = "Command-line tool and library to read and convert LTTng tracefiles";
2017-09-05 12:48:44 +01:00
homepage = https://www.efficios.com/babeltrace;
license = licenses.mit;
platforms = platforms.linux;
maintainers = [ maintainers.bjornfor ];
};
}