summary refs log tree commit diff
path: root/pkgs/development/libraries/pcre/default.nix
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2010-05-20 10:32:56 +0000
committerPeter Simons <simons@cryp.to>2010-05-20 10:32:56 +0000
commit5a928cc58431e0099d9070a66bf1a721c7324fd3 (patch)
tree7418214699fadcdc3f37b116c9ab2a5ce5d47fe2 /pkgs/development/libraries/pcre/default.nix
parent6d88da9a2346dd19681db16d8593ae0a39cbadd9 (diff)
downloadnixpkgs-5a928cc58431e0099d9070a66bf1a721c7324fd3.tar
nixpkgs-5a928cc58431e0099d9070a66bf1a721c7324fd3.tar.gz
nixpkgs-5a928cc58431e0099d9070a66bf1a721c7324fd3.tar.bz2
nixpkgs-5a928cc58431e0099d9070a66bf1a721c7324fd3.tar.lz
nixpkgs-5a928cc58431e0099d9070a66bf1a721c7324fd3.tar.xz
nixpkgs-5a928cc58431e0099d9070a66bf1a721c7324fd3.tar.zst
nixpkgs-5a928cc58431e0099d9070a66bf1a721c7324fd3.zip
pkgs/development/libraries/pcre: updated to version 8.02
svn path=/nixpkgs/branches/stdenv-updates/; revision=21908
Diffstat (limited to 'pkgs/development/libraries/pcre/default.nix')
-rw-r--r--pkgs/development/libraries/pcre/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/libraries/pcre/default.nix b/pkgs/development/libraries/pcre/default.nix
index 3d3385c83f8..f139bce100d 100644
--- a/pkgs/development/libraries/pcre/default.nix
+++ b/pkgs/development/libraries/pcre/default.nix
@@ -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 ""}