nixpkgs/pkgs/development/tools/parsing/flex/default.nix

14 lines
304 B
Nix
Raw Normal View History

{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;
}