summary refs log tree commit diff
path: root/pkgs/development/libraries/libxml2
diff options
context:
space:
mode:
authorJakob Gillich <jakob@gillich.me>2016-01-07 06:24:37 +0100
committerVladimír Čunát <vcunat@gmail.com>2016-01-07 10:18:34 +0100
commitaee934b3aaaba33f96a153b1706728320d8c2357 (patch)
tree5ae4320f9d6d36f55e342acbbda379e3e111401f /pkgs/development/libraries/libxml2
parent38460cfe7246f34ccb09768b1435b9dcfd739e3b (diff)
downloadnixlib-aee934b3aaaba33f96a153b1706728320d8c2357.tar
nixlib-aee934b3aaaba33f96a153b1706728320d8c2357.tar.gz
nixlib-aee934b3aaaba33f96a153b1706728320d8c2357.tar.bz2
nixlib-aee934b3aaaba33f96a153b1706728320d8c2357.tar.lz
nixlib-aee934b3aaaba33f96a153b1706728320d8c2357.tar.xz
nixlib-aee934b3aaaba33f96a153b1706728320d8c2357.tar.zst
nixlib-aee934b3aaaba33f96a153b1706728320d8c2357.zip
libxml2: security update 2.9.2 -> 2.9.3 (close #12197)
Diffstat (limited to 'pkgs/development/libraries/libxml2')
-rw-r--r--pkgs/development/libraries/libxml2/default.nix8
1 files changed, 2 insertions, 6 deletions
diff --git a/pkgs/development/libraries/libxml2/default.nix b/pkgs/development/libraries/libxml2/default.nix
index 2fdc198aa115..cac8f10d37aa 100644
--- a/pkgs/development/libraries/libxml2/default.nix
+++ b/pkgs/development/libraries/libxml2/default.nix
@@ -4,16 +4,13 @@ assert pythonSupport -> python != null;
 
 #TODO: share most stuff between python and non-python builds, perhaps via multiple-output
 
-let
-  version = "2.9.2";
-in
-
 stdenv.mkDerivation (rec {
   name = "libxml2-${version}";
+  version = "2.9.3";
 
   src = fetchurl {
     url = "http://xmlsoft.org/sources/${name}.tar.gz";
-    sha256 = "1g6mf03xcabmk5ing1lwqmasr803616gb2xhn7pll10x2l5w6y2i";
+    sha256 = "0bd17g6znn2r98gzpjppsqjg33iraky4px923j3k8kdl8qgy7sad";
   };
 
   outputs = [ "out" "doc" ];
@@ -48,4 +45,3 @@ stdenv.mkDerivation (rec {
 } // stdenv.lib.optionalAttrs (!pythonSupport) {
   configureFlags = "--with-python=no"; # otherwise build impurity bites us
 })
-