libxml2: security update 2.9.2 -> 2.9.3 (close #12197)

This commit is contained in:
Jakob Gillich 2016-01-07 06:24:37 +01:00 committed by Vladimír Čunát
parent 38460cfe72
commit aee934b3aa

View File

@ -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
})