summary refs log tree commit diff
path: root/pkgs/development/tools/parsing/flex/flex-2.5.4a.nix
blob: 2d146eeca250880eb39850db25606ba128c70b29 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{stdenv, fetchurl, yacc}:

assert yacc != null;

stdenv.mkDerivation {
  name = "flex-2.5.4a";
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/flex-2.5.4a.tar.gz;
    md5 = "bd8753d0b22e1f4ec87a553a73021adf";
  };
  buildInputs = [yacc];
}