nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ stdenv, fetchurl, pkgconfig, glib, libuuid, popt, elfutils }:
2
3stdenv.mkDerivation rec {
4 name = "babeltrace-1.5.6";
5
6 src = fetchurl {
7 url = "https://www.efficios.com/files/babeltrace/${name}.tar.bz2";
8 sha256 = "1dxv2pwyqx2p7kzhcfansij40m9kanl85x2r68dmgp98g0hvq22k";
9 };
10
11 nativeBuildInputs = [ pkgconfig ];
12 buildInputs = [ glib libuuid popt elfutils ];
13
14 meta = with stdenv.lib; {
15 description = "Command-line tool and library to read and convert LTTng tracefiles";
16 homepage = https://www.efficios.com/babeltrace;
17 license = licenses.mit;
18 platforms = platforms.linux;
19 maintainers = [ maintainers.bjornfor ];
20 };
21
22}