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

25 lines
705 B
Nix
Raw Normal View History

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