nixpkgs/pkgs/development/libraries/libxmlxx/default.nix
2014-02-13 19:09:47 +02:00

22 lines
665 B
Nix

{ stdenv, fetchurl
, pkgconfig, libxml2, glibmm, perl }:
stdenv.mkDerivation rec {
name = "libxml++-2.37.1";
src = fetchurl {
url = "mirror://gnome/sources/libxml++/2.37/${name}.tar.xz";
sha256 = "17xkdndcambij33k25cb5c4mg2457wi114kiaprjma9j0mh87cgk";
};
buildInputs = [ pkgconfig glibmm perl ];
propagatedBuildInputs = [ libxml2 ];
configureFlags = "--disable-documentation"; #doesn't build without this for some reason
meta = {
homepage = http://libxmlplusplus.sourceforge.net/;
description = "C++ wrapper for the libxml2 XML parser library";
license = "LGPLv2+";
maintainers = [ stdenv.lib.maintainers.phreedom ];
};
}