nixpkgs/pkgs/development/libraries/libxmlxx/v3.nix
2017-11-24 02:14:46 +01:00

29 lines
758 B
Nix

{ stdenv, fetchurl, pkgconfig, libxml2, glibmm, perl }:
stdenv.mkDerivation rec {
name = "libxml++-${maj_ver}.${min_ver}";
maj_ver = "3.0";
min_ver = "1";
src = fetchurl {
url = "mirror://gnome/sources/libxml++/${maj_ver}/${name}.tar.xz";
sha256 = "19kik79fmg61nv0by0a5f9wchrcfjwzvih4v2waw01hqflhqvp0r";
};
outputs = [ "out" "devdoc" ];
nativeBuildInputs = [ pkgconfig perl ];
buildInputs = [ glibmm ];
propagatedBuildInputs = [ libxml2 ];
meta = with stdenv.lib; {
homepage = http://libxmlplusplus.sourceforge.net/;
description = "C++ wrapper for the libxml2 XML parser library, version 3";
license = licenses.lgpl2Plus;
platforms = platforms.unix;
maintainers = with maintainers; [ loskutov ];
};
}