about summary refs log tree commit diff
path: root/pkgs/tools/text/gnugrep/default.fix
blob: b526c81fa77695ab0d65029d3f5e628f55af28bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{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;
}