about summary refs log tree commit diff
path: root/pkgs-ng/development/tools/parsing/flex/default.fix
blob: 605c29db2d22345a64e95303434eeea04d8a6e63 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{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;
}