summary refs log tree commit diff
path: root/pkgs/tools/text/gnugrep
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2015-02-04 22:06:05 +0100
committerPeter Simons <simons@cryp.to>2015-03-09 15:55:21 +0100
commit8743003935692858d507589787ae46c3aa94a638 (patch)
treea7c60794610ae6fcbc3f26caa8a0eda4d20d61a2 /pkgs/tools/text/gnugrep
parent0619c852cbe48a95cb872a3abee9f1aef4727655 (diff)
downloadnixpkgs-8743003935692858d507589787ae46c3aa94a638.tar
nixpkgs-8743003935692858d507589787ae46c3aa94a638.tar.gz
nixpkgs-8743003935692858d507589787ae46c3aa94a638.tar.bz2
nixpkgs-8743003935692858d507589787ae46c3aa94a638.tar.lz
nixpkgs-8743003935692858d507589787ae46c3aa94a638.tar.xz
nixpkgs-8743003935692858d507589787ae46c3aa94a638.tar.zst
nixpkgs-8743003935692858d507589787ae46c3aa94a638.zip
grep: update
The 2.21 update fixes NixOS/nix#464.
Diffstat (limited to 'pkgs/tools/text/gnugrep')
-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 0380d2d2467..e0dcd4eadf9 100644
--- a/pkgs/tools/text/gnugrep/default.nix
+++ b/pkgs/tools/text/gnugrep/default.nix
@@ -1,13 +1,13 @@
 { stdenv, fetchurl, pcre, libiconv }:
 
-let version = "2.20"; in
+let version = "2.21"; in
 
 stdenv.mkDerivation {
   name = "gnugrep-${version}";
 
   src = fetchurl {
     url = "mirror://gnu/grep/grep-${version}.tar.xz";
-    sha256 = "0rcs0spsxdmh6yz8y4frkqp6f5iw19mdbdl9s2v6956hq0mlbbzh";
+    sha256 = "1pp5n15qwxrw1pibwjhhgsibyv5cafhamf8lwzjygs6y00fa2i2j";
   };
 
   buildInputs = [ pcre libiconv ];