blob: d3ad414cd9c1d4ab641f5720af8d26808f4ec521 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "expat-2.1.0";
src = fetchurl {
url = "mirror://sourceforge/expat/${name}.tar.gz";
sha256 = "11pblz61zyxh68s5pdcbhc30ha1b2vfjd83aiwfg4vc15x3hadw2";
};
patches = [ ./CVE-2015-1283.patch ];
meta = {
homepage = http://www.libexpat.org/;
description = "A stream-oriented XML parser library written in C";
platforms = stdenv.lib.platforms.all;
};
}
|