summary refs log tree commit diff
path: root/pkgs/tools/text/gnugrep/default.fix
diff options
context:
space:
mode:
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;
+}