pkgs/development/libraries/pcre: updated to version 8.02

svn path=/nixpkgs/branches/stdenv-updates/; revision=21908
This commit is contained in:
Peter Simons 2010-05-20 10:32:56 +00:00
parent 6d88da9a23
commit 5a928cc584

View File

@ -1,13 +1,13 @@
{stdenv, fetchurl, unicodeSupport ? false, cplusplusSupport ? true}:
stdenv.mkDerivation {
name = "pcre-7.8";
name = "pcre-8.02";
src = fetchurl {
url = mirror://sourceforge/pcre/pcre-7.8.tar.bz2;
sha256 = "1zsqk352mx2zklf9bgpg9d88ckfdssbbbiyslhrycfckw8m3qpvr";
url = mirror://sourceforge/pcre/pcre-8.02.tar.bz2;
sha256 = "1gafmkmkbpdqjbdl85q2z5774gw4gfqjf238icz7gqf3v4v90xd4";
};
configureFlags = ''
${if unicodeSupport then "--enable-unicode-properties" else ""}
${if !cplusplusSupport then "--disable-cpp" else ""}