forked from mirrors/nixpkgs
9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
23 lines
657 B
Nix
23 lines
657 B
Nix
{ stdenv, fetchurl, pkg-config, glib, libuuid, popt, elfutils }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "babeltrace-1.5.8";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.efficios.com/files/babeltrace/${name}.tar.bz2";
|
|
sha256 = "1hkg3phnamxfrhwzmiiirbhdgckzfkqwhajl0lmr1wfps7j47wcz";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
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 ];
|
|
};
|
|
|
|
}
|