From 51760b17b3dffa4c1ec6e0abfd87feb8154bb076 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 25 Mar 2009 17:41:02 +0000 Subject: [PATCH] * PCRE 7.8. svn path=/nixpkgs/branches/stdenv-updates/; revision=14710 --- pkgs/development/libraries/pcre/default.nix | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/pcre/default.nix b/pkgs/development/libraries/pcre/default.nix index e9dd19859f2..e23b493a976 100644 --- a/pkgs/development/libraries/pcre/default.nix +++ b/pkgs/development/libraries/pcre/default.nix @@ -1,13 +1,20 @@ {stdenv, fetchurl, unicodeSupport ? false, cplusplusSupport ? true}: stdenv.mkDerivation { - name = "pcre-7.4"; + name = "pcre-7.8"; + src = fetchurl { - url = mirror://sourceforge/pcre/pcre-7.4.tar.bz2; - sha256 = "1rdks2h5f3p2d71c4jnxaic1c9gmgsfky80djnafcdbdrhzkiyx5"; + url = mirror://sourceforge/pcre/pcre-7.8.tar.bz2; + sha256 = "1zsqk352mx2zklf9bgpg9d88ckfdssbbbiyslhrycfckw8m3qpvr"; }; + configureFlags = '' ${if unicodeSupport then "--enable-unicode-properties --enable-shared --disable-static" else ""} ${if !cplusplusSupport then "--disable-cpp" else ""} ''; + + meta = { + homepage = http://www.pcre.org/; + description = "A library for Perl Compatible Regular Expressions"; + }; }