Skip to content

Commit c28e6ee

Browse files
ryceegrahamc
authored andcommittedJun 18, 2017
expat: 2.2.0 -> 2.2.1
Includes fixes for CVE-2017-9233 and CVE-2016-9063. (cherry picked from commit 5fc4852)
1 parent 038a699 commit c28e6ee

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed
 

Diff for: ‎pkgs/development/libraries/expat/default.nix

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{ stdenv, fetchurl }:
22

33
stdenv.mkDerivation rec {
4-
name = "expat-2.2.0";
4+
name = "expat-2.2.1";
55

66
src = fetchurl {
77
url = "mirror://sourceforge/expat/${name}.tar.bz2";
8-
sha256 = "1zq4lnwjlw8s9mmachwfvfjf2x3lk24jm41746ykhdcvs7r0zrfr";
8+
sha256 = "11c8jy1wvllvlk7xdc5cm8hdhg0hvs8j0aqy6s702an8wkdcls0q";
99
};
1010

1111
outputs = [ "out" "dev" ]; # TODO: fix referrers
@@ -17,6 +17,8 @@ stdenv.mkDerivation rec {
1717

1818
doCheck = true;
1919

20+
preCheck = "patchShebangs ./run.sh";
21+
2022
meta = with stdenv.lib; {
2123
homepage = http://www.libexpat.org/;
2224
description = "A stream-oriented XML parser library written in C";

0 commit comments

Comments
 (0)
Please sign in to comment.