summary refs log tree commit diff
path: root/pkgs/tools/text/gnugrep/default.fix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2003-11-14 09:59:13 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2003-11-14 09:59:13 +0000
commit48c3faca5194fab0d6f19ad33a9756763dddefdd (patch)
tree24e08e006efef44f671d275a5c896e22d83abb28 /pkgs/tools/text/gnugrep/default.fix
parent6b2bb2247432e5749710576a167a1632c2ec0a61 (diff)
* Renamed pkgs-ng to pkgs.
svn path=/nixpkgs/trunk/; revision=502
Diffstat (limited to 'pkgs/tools/text/gnugrep/default.fix')
-rw-r--r--pkgs/tools/text/gnugrep/default.fix11
1 files changed, 11 insertions, 0 deletions
diff --git a/pkgs/tools/text/gnugrep/default.fix b/pkgs/tools/text/gnugrep/default.fix
new file mode 100644
index 0000000000000..b526c81fa7769
--- /dev/null
+++ b/pkgs/tools/text/gnugrep/default.fix
@@ -0,0 +1,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;
+}