nixpkgs/pkgs/tools/text/gnugrep/default.nix
Ludovic Courtès 9e2fb3fe06 GNU grep 2.5.4 (untested).
svn path=/nixpkgs/branches/stdenv-updates/; revision=14024
2009-02-10 22:46:00 +00:00

31 lines
693 B
Nix

{stdenv, fetchurl, pcre}:
let version = "2.5.4"; in
stdenv.mkDerivation {
name = "gnugrep-${version}";
src = fetchurl {
url = "mirror://gnu/grep/grep-${version}.tar.bz2";
sha256 = "0800lj1ywf43x5jnjyga56araak0f601sd9k5q1vv3s5057cdgha";
};
buildInputs = [pcre];
doCheck = true;
meta = {
homepage = http://www.gnu.org/software/grep/;
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;};
}