3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/libxmlxx/default.nix

27 lines
760 B
Nix
Raw Normal View History

2015-04-26 00:06:16 +01:00
{ stdenv, fetchurl, pkgconfig, libxml2, glibmm, perl }:
stdenv.mkDerivation rec {
2015-09-18 03:22:28 +01:00
name = "libxml++-2.38.1";
2015-04-26 00:06:16 +01:00
src = fetchurl {
2015-04-26 00:06:16 +01:00
url = "mirror://gnome/sources/libxml++/2.38/${name}.tar.xz";
2015-09-18 03:22:28 +01:00
sha256 = "0px0ljcf9rsfa092dzmm097yn7wln6d5fgsvj9lnrnq3kcc2j9c8";
};
2015-04-26 00:06:16 +01:00
nativeBuildInputs = [ pkgconfig perl ];
buildInputs = [ glibmm ];
propagatedBuildInputs = [ libxml2 ];
configureFlags = "--disable-documentation"; #doesn't build without this for some reason
2015-04-26 00:06:16 +01:00
meta = with stdenv.lib; {
homepage = http://libxmlplusplus.sourceforge.net/;
description = "C++ wrapper for the libxml2 XML parser library";
2015-04-26 00:06:16 +01:00
license = licenses.lgpl2Plus;
platforms = platforms.unix;
maintainers = with maintainers; [ phreedom wkennington ];
};
2015-04-26 00:06:16 +01:00
}