summary refs log tree commit diff
path: root/pkgs/development/libraries/libxmlxx
diff options
context:
space:
mode:
authorJosé Romildo Malaquias <malaquias@gmail.com>2016-09-21 14:31:45 -0300
committerFranz Pletz <fpletz@fnordicwalking.de>2016-09-21 19:31:45 +0200
commit12e834f769cc08e012b36d8eca1ee242494d5554 (patch)
tree0025e0864165a9ff82f137be1acfe90510291cea /pkgs/development/libraries/libxmlxx
parent4aafe684d2baad9e657047ab9b3452bc8ef1ebf5 (diff)
downloadnixpkgs-12e834f769cc08e012b36d8eca1ee242494d5554.tar
nixpkgs-12e834f769cc08e012b36d8eca1ee242494d5554.tar.gz
nixpkgs-12e834f769cc08e012b36d8eca1ee242494d5554.tar.bz2
nixpkgs-12e834f769cc08e012b36d8eca1ee242494d5554.tar.lz
nixpkgs-12e834f769cc08e012b36d8eca1ee242494d5554.tar.xz
nixpkgs-12e834f769cc08e012b36d8eca1ee242494d5554.tar.zst
nixpkgs-12e834f769cc08e012b36d8eca1ee242494d5554.zip
libxmlxx: 2.38.1 -> 2.40.1 (#18782)
Diffstat (limited to 'pkgs/development/libraries/libxmlxx')
-rw-r--r--pkgs/development/libraries/libxmlxx/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/libraries/libxmlxx/default.nix b/pkgs/development/libraries/libxmlxx/default.nix
index 72afc1d55eb..65e10c5a399 100644
--- a/pkgs/development/libraries/libxmlxx/default.nix
+++ b/pkgs/development/libraries/libxmlxx/default.nix
@@ -1,11 +1,13 @@
 { stdenv, fetchurl, pkgconfig, libxml2, glibmm, perl }:
 
 stdenv.mkDerivation rec {
-  name = "libxml++-2.38.1";
+  name = "libxml++-${maj_ver}.${min_ver}";
+  maj_ver = "2.40";
+  min_ver = "1";
 
   src = fetchurl {
-    url = "mirror://gnome/sources/libxml++/2.38/${name}.tar.xz";
-    sha256 = "0px0ljcf9rsfa092dzmm097yn7wln6d5fgsvj9lnrnq3kcc2j9c8";
+    url = "mirror://gnome/sources/libxml++/${maj_ver}/${name}.tar.xz";
+    sha256 = "1sb3akryklvh2v6m6dihdnbpf1lkx441v972q9hlz1sq6bfspm2a";
   };
 
   nativeBuildInputs = [ pkgconfig perl ];
@@ -14,8 +16,6 @@ stdenv.mkDerivation rec {
 
   propagatedBuildInputs = [ libxml2 ];
 
-  configureFlags = "--disable-documentation"; #doesn't build without this for some reason
-
   meta = with stdenv.lib; {
     homepage = http://libxmlplusplus.sourceforge.net/;
     description = "C++ wrapper for the libxml2 XML parser library";