f0f5b6297e
svn path=/nixpkgs/trunk/; revision=484
14 lines
304 B
Plaintext
14 lines
304 B
Plaintext
{stdenv, fetchurl, yacc}:
|
|
assert !isNull yacc;
|
|
derivation {
|
|
name = "flex-2.5.4a";
|
|
system = stdenv.system;
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = ftp://ftp.nluug.nl/pub/gnu/flex/flex-2.5.4a.tar.gz;
|
|
md5 = "bd8753d0b22e1f4ec87a553a73021adf";
|
|
};
|
|
stdenv = stdenv;
|
|
yacc = yacc;
|
|
}
|