about summary refs log tree commit diff
path: root/pkgs/tools/text
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2010-10-07 22:29:00 +0000
committerLudovic Courtès <ludo@gnu.org>2010-10-07 22:29:00 +0000
commitdc71d2e6d3242da24d090ec6ba0fcad74b9b0187 (patch)
tree32c01f4c07ceac8472f0954f40d5f393bcf62cd2 /pkgs/tools/text
parent86d8c5385e83831783c9c3245d7dc8ad064e0b76 (diff)
GNU grep 2.7.
svn path=/nixpkgs/branches/stdenv-updates/; revision=24160
Diffstat (limited to 'pkgs/tools/text')
-rw-r--r--pkgs/tools/text/gnugrep/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/text/gnugrep/default.nix b/pkgs/tools/text/gnugrep/default.nix
index 1cd73a8814ce6..18a6ef5dc69d2 100644
--- a/pkgs/tools/text/gnugrep/default.nix
+++ b/pkgs/tools/text/gnugrep/default.nix
@@ -1,6 +1,6 @@
 {stdenv, fetchurl, pcre}:
 
-let version = "2.6.3"; in
+let version = "2.7"; in
 
 stdenv.mkDerivation {
   name = "gnugrep-${version}";
@@ -9,7 +9,7 @@ stdenv.mkDerivation {
   
   src = fetchurl {
     url = "mirror://gnu/grep/grep-${version}.tar.gz";
-    sha256 = "0rnnljzcpb2sl5zabww7gbzk9r6kp8kycsqrf909d6jdak8yah53";
+    sha256 = "1b8vksfd1ngharac3ygaqim3lrf0yqap992sg0vfm7572l88655d";
   };
   
   buildInputs = [pcre];