* Fixed flex-new.

svn path=/nixpkgs/trunk/; revision=893
This commit is contained in:
Eelco Dolstra
2004-04-01 14:24:30 +00:00
parent 9c711700e4
commit 8e4d58631e
4 changed files with 7 additions and 28 deletions
@@ -1,11 +1,12 @@
{stdenv, fetchurl, yacc}:
assert yacc != null;
stdenv.mkDerivation {
name = "flex-2.5.4a";
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.nluug.nl/pub/gnu/flex/flex-2.5.4a.tar.gz;
md5 = "bd8753d0b22e1f4ec87a553a73021adf";
};
yacc = yacc;
buildInputs = [yacc];
}