GNU grep 2.5.4 (untested).

svn path=/nixpkgs/branches/stdenv-updates/; revision=14024
This commit is contained in:
Ludovic Courtès 2009-02-10 22:46:00 +00:00
parent 6aa15fcfb0
commit 9e2fb3fe06

View File

@ -1,22 +1,29 @@
{stdenv, fetchurl, pcre}: {stdenv, fetchurl, pcre}:
let version = "2.5.4"; in
stdenv.mkDerivation { stdenv.mkDerivation {
name = "gnugrep-2.5.3"; name = "gnugrep-${version}";
src = fetchurl { src = fetchurl {
url = http://nixos.org/tarballs/grep-2.5.3-with-info.tar.bz2; url = "mirror://gnu/grep/grep-${version}.tar.bz2";
sha256 = "0rg9dipksqzbg8v1xalib1n3xkkycc5r1l2gb9cxy1cz3cjip5l8"; sha256 = "0800lj1ywf43x5jnjyga56araak0f601sd9k5q1vv3s5057cdgha";
}; };
buildInputs = [pcre]; buildInputs = [pcre];
preBuild = '' doCheck = true;
makeFlagsArray=(mkdir_p="mkdir -p")
'';
meta = { meta = {
homepage = http://www.gnu.org/software/grep/; homepage = http://www.gnu.org/software/grep/;
description = "GNU implementation of the Unix grep command"; description = "GNU implementation of the Unix grep command";
longDescription = ''
The grep command searches one or more input files for lines
containing a match to a specified pattern. By default, grep
prints the matching lines.
'';
license = "GPLv3+";
}; };
passthru = {inherit pcre;}; passthru = {inherit pcre;};