nixpkgs/pkgs-ng/tools/text/gnugrep/default.fix
Eelco Dolstra a6c0074fcf * More refactoring.
svn path=/nixpkgs/trunk/; revision=470
2003-11-03 16:24:47 +00:00

12 lines
285 B
Plaintext

{stdenv, fetchurl, pcre}: derivation {
name = "gnugrep-2.5.1";
system = stdenv.system;
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.nluug.nl/pub/gnu/grep/grep-2.5.1.tar.bz2;
md5 = "ddd99e2d5d4f4611357e31e97f080cf2";
};
stdenv = stdenv;
pcre = pcre;
}