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

33 lines
922 B
Nix
Raw Normal View History

2016-09-27 06:34:40 +01:00
{ stdenv, fetchurl, pkgconfig, libxml2, glibmm, perl }:
2016-09-26 04:15:32 +01:00
stdenv.mkDerivation rec {
2019-06-18 02:10:05 +01:00
pname = "libxml++";
version = "3.0.1";
2016-09-27 06:34:40 +01:00
2016-09-26 04:15:32 +01:00
src = fetchurl {
2019-06-18 02:10:05 +01:00
url = "mirror://gnome/sources/libxml++/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
2016-11-20 00:14:09 +00:00
sha256 = "19kik79fmg61nv0by0a5f9wchrcfjwzvih4v2waw01hqflhqvp0r";
2016-09-26 04:15:32 +01:00
};
2019-06-18 02:16:05 +01:00
outputs = [ "out" "dev" "doc" "devdoc" ];
2017-11-24 01:14:46 +00:00
2016-09-27 06:34:40 +01:00
nativeBuildInputs = [ pkgconfig perl ];
buildInputs = [ glibmm ];
2016-09-26 04:15:32 +01:00
propagatedBuildInputs = [ libxml2 ];
2019-06-18 02:16:05 +01:00
postFixup = ''
substituteInPlace $dev/lib/pkgconfig/libxml++-3.0.pc \
--replace 'docdir=''${datarootdir}' "docdir=$doc/share"
'';
2016-09-27 06:34:40 +01:00
meta = with stdenv.lib; {
2016-09-26 04:15:32 +01:00
homepage = http://libxmlplusplus.sourceforge.net/;
description = "C++ wrapper for the libxml2 XML parser library, version 3";
2016-09-27 06:34:40 +01:00
license = licenses.lgpl2Plus;
platforms = platforms.unix;
2016-09-27 06:41:01 +01:00
maintainers = with maintainers; [ loskutov ];
2016-09-26 04:15:32 +01:00
};
}