summary refs log tree commit diff
path: root/pkgs/tools/text/gnugrep/default.nix
blob: b48779d0bc536985496164b3f944832977f06749 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{stdenv, fetchurl, pcre}:

stdenv.mkDerivation {
  name = "gnugrep-2.5.1";
  src = fetchurl {
    url = http://losser.st-lab.cs.uu.nl/~eelco/mirror/grep-2.5.1.tar.bz2;
    md5 = "ddd99e2d5d4f4611357e31e97f080cf2";
  };
  buildInputs = [pcre];
}