summary refs log tree commit diff
path: root/pkgs/development/libraries/libxmlxx
diff options
context:
space:
mode:
authorIgnat Loskutov <loskutov@google.com>2016-09-25 23:15:32 -0400
committerIgnat Loskutov <loskutov@google.com>2016-09-25 23:18:33 -0400
commitfc7c571dcee83881ebda2fea63d8178710a6bd44 (patch)
tree67cc18cffe875d701c06aff0b5b3369ee0432481 /pkgs/development/libraries/libxmlxx
parentcb2f84e4d70772804d723b10cc2469bfcd658488 (diff)
downloadnixpkgs-fc7c571dcee83881ebda2fea63d8178710a6bd44.tar
nixpkgs-fc7c571dcee83881ebda2fea63d8178710a6bd44.tar.gz
nixpkgs-fc7c571dcee83881ebda2fea63d8178710a6bd44.tar.bz2
nixpkgs-fc7c571dcee83881ebda2fea63d8178710a6bd44.tar.lz
nixpkgs-fc7c571dcee83881ebda2fea63d8178710a6bd44.tar.xz
nixpkgs-fc7c571dcee83881ebda2fea63d8178710a6bd44.tar.zst
nixpkgs-fc7c571dcee83881ebda2fea63d8178710a6bd44.zip
libxml++: add 3.0.0
Diffstat (limited to 'pkgs/development/libraries/libxmlxx')
-rw-r--r--pkgs/development/libraries/libxmlxx/v3.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libxmlxx/v3.nix b/pkgs/development/libraries/libxmlxx/v3.nix
new file mode 100644
index 00000000000..e665cfdea6f
--- /dev/null
+++ b/pkgs/development/libraries/libxmlxx/v3.nix
@@ -0,0 +1,20 @@
+{ stdenv, fetchurl
+, pkgconfig, libxml2, glibmm, perl }:
+stdenv.mkDerivation rec {
+  name = "libxml++-3.0.0";
+  src = fetchurl {
+    url = "mirror://gnome/sources/libxml++/3.0/${name}.tar.xz";
+    sha256 = "0lkrajbdys5f6w6qwfijih3hnbk4c6809qx2mmxkb7bj2w269wrg";
+  };
+
+  buildInputs = [ pkgconfig glibmm perl ];
+
+  propagatedBuildInputs = [ libxml2 ];
+
+  meta = {
+    homepage = http://libxmlplusplus.sourceforge.net/;
+    description = "C++ wrapper for the libxml2 XML parser library, version 3";
+    license = "LGPLv2+";
+    maintainers = with stdenv.maintainers; [ ];
+  };
+}