nixpkgs/pkgs/development/tools/misc/babeltrace/default.nix
R. RyanTM 2c045c8f6d babeltrace: 1.5.6 -> 1.5.7
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/babeltrace/versions
2019-07-14 23:15:31 -07:00

23 lines
653 B
Nix

{ stdenv, fetchurl, pkgconfig, glib, libuuid, popt, elfutils }:
stdenv.mkDerivation rec {
name = "babeltrace-1.5.7";
src = fetchurl {
url = "https://www.efficios.com/files/babeltrace/${name}.tar.bz2";
sha256 = "0yw05cnk5w8b5nbznycglyn4h3hq56a1n8rlb9k9rlzz4ph32lr1";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ glib libuuid popt elfutils ];
meta = with stdenv.lib; {
description = "Command-line tool and library to read and convert LTTng tracefiles";
homepage = https://www.efficios.com/babeltrace;
license = licenses.mit;
platforms = platforms.linux;
maintainers = [ maintainers.bjornfor ];
};
}