libxml++: 2.37.2 -> 2.38.0
This commit is contained in:
parent
14d52d7e0d
commit
bca07bdaa6
@ -1,22 +1,26 @@
|
|||||||
{ stdenv, fetchurl
|
{ stdenv, fetchurl, pkgconfig, libxml2, glibmm, perl }:
|
||||||
, pkgconfig, libxml2, glibmm, perl }:
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "libxml++-2.37.2";
|
name = "libxml++-2.38.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://gnome/sources/libxml++/2.37/${name}.tar.xz";
|
url = "mirror://gnome/sources/libxml++/2.38/${name}.tar.xz";
|
||||||
sha256 = "0fvpm95iapi5qrz6sil6vnqqdrsd7f9a16c415hzr44f2ji10gmv";
|
sha256 = "0ihk7fprpshs0gp38x2m5jhvrph3iwr0wy1h1qqvh3rjblzv162n";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ pkgconfig glibmm perl ];
|
nativeBuildInputs = [ pkgconfig perl ];
|
||||||
|
|
||||||
|
buildInputs = [ glibmm ];
|
||||||
|
|
||||||
propagatedBuildInputs = [ libxml2 ];
|
propagatedBuildInputs = [ libxml2 ];
|
||||||
|
|
||||||
configureFlags = "--disable-documentation"; #doesn't build without this for some reason
|
configureFlags = "--disable-documentation"; #doesn't build without this for some reason
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
homepage = http://libxmlplusplus.sourceforge.net/;
|
homepage = http://libxmlplusplus.sourceforge.net/;
|
||||||
description = "C++ wrapper for the libxml2 XML parser library";
|
description = "C++ wrapper for the libxml2 XML parser library";
|
||||||
license = stdenv.lib.licenses.lgpl2Plus;
|
license = licenses.lgpl2Plus;
|
||||||
maintainers = [ stdenv.lib.maintainers.phreedom ];
|
platforms = platforms.unix;
|
||||||
|
maintainers = with maintainers; [ phreedom wkennington ];
|
||||||
};
|
};
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user