libxml++: add 3.0.0

This commit is contained in:
Ignat Loskutov 2016-09-25 23:15:32 -04:00
parent cb2f84e4d7
commit fc7c571dce
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,20 @@
{ stdenv, fetchurl
, pkgconfig, libxml2, glibmm, perl }:
stdenv.mkDerivation rec {
name = "libxml++-3.0.0";
src = fetchurl {
url = "mirror://gnome/sources/libxml++/3.0/${name}.tar.xz";
sha256 = "0lkrajbdys5f6w6qwfijih3hnbk4c6809qx2mmxkb7bj2w269wrg";
};
buildInputs = [ pkgconfig glibmm perl ];
propagatedBuildInputs = [ libxml2 ];
meta = {
homepage = http://libxmlplusplus.sourceforge.net/;
description = "C++ wrapper for the libxml2 XML parser library, version 3";
license = "LGPLv2+";
maintainers = with stdenv.maintainers; [ ];
};
}

View File

@ -8893,6 +8893,7 @@ in
};
libxmlxx = callPackage ../development/libraries/libxmlxx { };
libxmlxx3 = callPackage ../development/libraries/libxmlxx/v3.nix { };
libxmp = callPackage ../development/libraries/libxmp { };