mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
468cb5980b
Since GNOME version is now 40, it no longer makes sense to use the old attribute name.
33 lines
868 B
Nix
33 lines
868 B
Nix
{ lib, stdenv, fetchurl, pkg-config, libxml2, glibmm, perl, gnome }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libxml++";
|
|
version = "2.40.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
|
sha256 = "1sb3akryklvh2v6m6dihdnbpf1lkx441v972q9hlz1sq6bfspm2a";
|
|
};
|
|
|
|
outputs = [ "out" "devdoc" ];
|
|
|
|
nativeBuildInputs = [ pkg-config perl ];
|
|
|
|
propagatedBuildInputs = [ libxml2 glibmm ];
|
|
|
|
passthru = {
|
|
updateScript = gnome.updateScript {
|
|
packageName = pname;
|
|
versionPolicy = "odd-unstable";
|
|
};
|
|
};
|
|
|
|
meta = with 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 ];
|
|
};
|
|
}
|