1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-18 10:56:53 +00:00
nixpkgs/pkgs/development/tools/parsing/flex/default.nix

14 lines
304 B
Nix
Raw Normal View History

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