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

33 lines
917 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, pkg-config, libxml2, glibmm, perl }:
2016-09-27 05:34:40 +00:00
2016-09-26 03:15:32 +00:00
stdenv.mkDerivation rec {
2019-06-18 01:10:05 +00:00
pname = "libxml++";
version = "3.0.1";
2016-09-27 05:34:40 +00:00
2016-09-26 03:15:32 +00:00
src = fetchurl {
url = "mirror://gnome/sources/libxml++/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
2016-11-20 00:14:09 +00:00
sha256 = "19kik79fmg61nv0by0a5f9wchrcfjwzvih4v2waw01hqflhqvp0r";
2016-09-26 03:15:32 +00:00
};
2019-06-18 01:16:05 +00:00
outputs = [ "out" "dev" "doc" "devdoc" ];
2017-11-24 01:14:46 +00:00
nativeBuildInputs = [ pkg-config perl ];
2016-09-27 05:34:40 +00:00
buildInputs = [ glibmm ];
2016-09-26 03:15:32 +00:00
propagatedBuildInputs = [ libxml2 ];
2019-06-18 01:16:05 +00:00
postFixup = ''
substituteInPlace $dev/lib/pkgconfig/libxml++-3.0.pc \
--replace 'docdir=''${datarootdir}' "docdir=$doc/share"
'';
meta = with lib; {
homepage = "http://libxmlplusplus.sourceforge.net/";
2016-09-26 03:15:32 +00:00
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
};
}