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

32 lines
839 B
Nix
Raw Normal View History

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