summary refs log tree commit diff
path: root/pkgs/development/libraries/expat/default.nix
blob: 35a2945207b4a05ccbfe1aa8b99a45d32f98a346 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ stdenv, fetchurl }:

stdenv.mkDerivation {
  name = "expat-2.0.1";
  
  src = fetchurl {
    url = mirror://sourceforge/expat/expat-2.0.1.tar.gz;
    sha256 = "14sy5qx9hgjyfs743iq8ywldhp5w4n6cscqf2p4hgrw6vys60xl4";
  };

  patches = [ ./cve-2009-3560.patch ];

  meta = {
    homepage = http://expat.sourceforge.net/;
    description = "A stream-oriented XML parser library written in C";
  };
}