grep: update

The 2.21 update fixes NixOS/nix#464.
This commit is contained in:
Vladimír Čunát 2015-02-04 22:06:05 +01:00 committed by Peter Simons
parent 0619c852cb
commit 8743003935

View file

@ -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 ];