summary refs log tree commit diff
path: root/pkgs/development/libraries/libxmlxx
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2015-04-25 16:06:16 -0700
committerWilliam A. Kennington III <william@wkennington.com>2015-04-25 21:27:53 -0700
commitbca07bdaa6df4c22db0d6466b69ce49443d48601 (patch)
tree370f823b658268b0a9852df6f3606c87d218e9d3 /pkgs/development/libraries/libxmlxx
parent14d52d7e0d66aa81b9789863ca46f9d2d47f13f5 (diff)
downloadnixpkgs-bca07bdaa6df4c22db0d6466b69ce49443d48601.tar
nixpkgs-bca07bdaa6df4c22db0d6466b69ce49443d48601.tar.gz
nixpkgs-bca07bdaa6df4c22db0d6466b69ce49443d48601.tar.bz2
nixpkgs-bca07bdaa6df4c22db0d6466b69ce49443d48601.tar.lz
nixpkgs-bca07bdaa6df4c22db0d6466b69ce49443d48601.tar.xz
nixpkgs-bca07bdaa6df4c22db0d6466b69ce49443d48601.tar.zst
nixpkgs-bca07bdaa6df4c22db0d6466b69ce49443d48601.zip
libxml++: 2.37.2 -> 2.38.0
Diffstat (limited to 'pkgs/development/libraries/libxmlxx')
-rw-r--r--pkgs/development/libraries/libxmlxx/default.nix24
1 files changed, 14 insertions, 10 deletions
diff --git a/pkgs/development/libraries/libxmlxx/default.nix b/pkgs/development/libraries/libxmlxx/default.nix
index 785ed0db7d7..81e836aa46d 100644
--- a/pkgs/development/libraries/libxmlxx/default.nix
+++ b/pkgs/development/libraries/libxmlxx/default.nix
@@ -1,22 +1,26 @@
-{ stdenv, fetchurl
-, pkgconfig, libxml2, glibmm, perl }:
+{ stdenv, fetchurl, pkgconfig, libxml2, glibmm, perl }:
+
 stdenv.mkDerivation rec {
-  name = "libxml++-2.37.2";
+  name = "libxml++-2.38.0";
+
   src = fetchurl {
-    url = "mirror://gnome/sources/libxml++/2.37/${name}.tar.xz";
-    sha256 = "0fvpm95iapi5qrz6sil6vnqqdrsd7f9a16c415hzr44f2ji10gmv";
+    url = "mirror://gnome/sources/libxml++/2.38/${name}.tar.xz";
+    sha256 = "0ihk7fprpshs0gp38x2m5jhvrph3iwr0wy1h1qqvh3rjblzv162n";
   };
 
-  buildInputs = [ pkgconfig glibmm perl ];
+  nativeBuildInputs = [ pkgconfig perl ];
+
+  buildInputs = [ glibmm ];
 
   propagatedBuildInputs = [ libxml2 ];
 
   configureFlags = "--disable-documentation"; #doesn't build without this for some reason
 
-  meta = {
+  meta = with stdenv.lib; {
     homepage = http://libxmlplusplus.sourceforge.net/;
     description = "C++ wrapper for the libxml2 XML parser library";
-    license = stdenv.lib.licenses.lgpl2Plus;
-    maintainers = [ stdenv.lib.maintainers.phreedom ];
+    license = licenses.lgpl2Plus;
+    platforms = platforms.unix;
+    maintainers = with maintainers; [ phreedom wkennington ];
   };
-}
\ No newline at end of file
+}