nixpkgs/pkgs/development/libraries/libxmlxx/v3.nix

27 lines
725 B
Nix
Raw Normal View History

2016-09-27 05:34:40 +00:00
{ stdenv, fetchurl, pkgconfig, libxml2, glibmm, perl }:
2016-09-26 03:15:32 +00:00
stdenv.mkDerivation rec {
2016-09-27 05:34:40 +00:00
name = "libxml++-${maj_ver}.${min_ver}";
maj_ver = "3.0";
min_ver = "0";
2016-09-26 03:15:32 +00:00
src = fetchurl {
2016-09-27 05:34:40 +00:00
url = "mirror://gnome/sources/libxml++/${maj_ver}/${name}.tar.xz";
2016-09-26 03:15:32 +00:00
sha256 = "0lkrajbdys5f6w6qwfijih3hnbk4c6809qx2mmxkb7bj2w269wrg";
};
2016-09-27 05:34:40 +00:00
nativeBuildInputs = [ pkgconfig perl ];
buildInputs = [ glibmm ];
2016-09-26 03:15:32 +00:00
propagatedBuildInputs = [ libxml2 ];
2016-09-27 05:34:40 +00:00
meta = with stdenv.lib; {
2016-09-26 03:15:32 +00:00
homepage = http://libxmlplusplus.sourceforge.net/;
description = "C++ wrapper for the libxml2 XML parser library, version 3";
2016-09-27 05:34:40 +00:00
license = licenses.lgpl2Plus;
platforms = platforms.unix;
2016-09-27 05:41:01 +00:00
maintainers = with maintainers; [ loskutov ];
2016-09-26 03:15:32 +00:00
};
}