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

27 lines
738 B
Nix
Raw Normal View History

2015-04-26 01:06:16 +02:00
{ stdenv, fetchurl, pkgconfig, libxml2, glibmm, perl }:
stdenv.mkDerivation rec {
2016-09-21 19:31:45 +02:00
name = "libxml++-${maj_ver}.${min_ver}";
maj_ver = "2.40";
min_ver = "1";
2015-04-26 01:06:16 +02:00
src = fetchurl {
2016-09-21 19:31:45 +02:00
url = "mirror://gnome/sources/libxml++/${maj_ver}/${name}.tar.xz";
sha256 = "1sb3akryklvh2v6m6dihdnbpf1lkx441v972q9hlz1sq6bfspm2a";
};
2017-11-24 02:14:32 +01:00
outputs = [ "out" "devdoc" ];
2015-04-26 01:06:16 +02:00
nativeBuildInputs = [ pkgconfig perl ];
propagatedBuildInputs = [ libxml2 glibmm ];
2015-04-26 01:06:16 +02:00
meta = with stdenv.lib; {
homepage = http://libxmlplusplus.sourceforge.net/;
description = "C++ wrapper for the libxml2 XML parser library";
2015-04-26 01:06:16 +02:00
license = licenses.lgpl2Plus;
platforms = platforms.unix;
maintainers = with maintainers; [ phreedom wkennington ];
};
2015-04-26 01:06:16 +02:00
}