* GNU sed 4.1.5 compiled with dietlibc gives "Memory exhausted" errors

on trivial patterns, so use an older sed instead (4.1.2).  See
  http://linuxfromscratch.org/pipermail/hlfs-dev/2005-September/002447.html.

svn path=/nixpkgs/trunk/; revision=6792
This commit is contained in:
Eelco Dolstra
2006-10-20 20:05:26 +00:00
parent 65bbb45ab7
commit 3d2e573eff
3 changed files with 15 additions and 1 deletions
+9
View File
@@ -0,0 +1,9 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "gnused-4.1.2";
src = fetchurl {
url = ftp://ftp.gnu.org/pub/gnu/sed/sed-4.1.2.tar.gz;
md5 = "928f0e06422f414091917401f1a834d0";
};
}