libxml++: add 3.0.0
This commit is contained in:
parent
cb2f84e4d7
commit
fc7c571dce
20
pkgs/development/libraries/libxmlxx/v3.nix
Normal file
20
pkgs/development/libraries/libxmlxx/v3.nix
Normal 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; [ ];
|
||||
};
|
||||
}
|
@ -8893,6 +8893,7 @@ in
|
||||
};
|
||||
|
||||
libxmlxx = callPackage ../development/libraries/libxmlxx { };
|
||||
libxmlxx3 = callPackage ../development/libraries/libxmlxx/v3.nix { };
|
||||
|
||||
libxmp = callPackage ../development/libraries/libxmp { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user