nixpkgs/pkgs/development/tools/parsing/flex/default.nix
Eelco Dolstra 2fcc5fdb08 * "!isNull x" -> "x != null". Done automatically. Hope nothing
broke.

svn path=/nixpkgs/trunk/; revision=870
2004-03-29 10:25:25 +00:00

14 lines
304 B
Nix

{stdenv, fetchurl, yacc}:
assert yacc != null;
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;
}