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.
32 lines
841 B
Nix
32 lines
841 B
Nix
{ stdenv, fetchurl, pkg-config, libxml2, glibmm, perl, gnome3 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libxml++";
|
|
version = "2.40.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
|
sha256 = "1sb3akryklvh2v6m6dihdnbpf1lkx441v972q9hlz1sq6bfspm2a";
|
|
};
|
|
|
|
outputs = [ "out" "devdoc" ];
|
|
|
|
nativeBuildInputs = [ pkg-config perl ];
|
|
|
|
propagatedBuildInputs = [ libxml2 glibmm ];
|
|
|
|
passthru = {
|
|
updateScript = gnome3.updateScript {
|
|
packageName = pname;
|
|
};
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "http://libxmlplusplus.sourceforge.net/";
|
|
description = "C++ wrapper for the libxml2 XML parser library";
|
|
license = licenses.lgpl2Plus;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ phreedom ];
|
|
};
|
|
}
|