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

stdenv.mkDerivation {
  name = "gnugrep-2.5.1a";
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/grep-2.5.1a.tar.bz2;
    md5 = "52202fe462770fa6be1bb667bd6cf30c";
  };
  buildInputs = [pcre];
}