summary refs log tree commit diff
path: root/pkgs/development/tools/parsing/bison/bison-2.3.nix
blob: bf424aee8700f931e7c1157400e379cc43753aaf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{stdenv, fetchurl, m4}:

assert m4 != null;

stdenv.mkDerivation {
  name = "bison-2.3";
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/bison-2.3.tar.bz2;
    md5 = "c18640c6ec31a169d351e3117ecce3ec";
  };
  buildInputs = [m4];

  meta = {
    description = "A yacc-compatible parser generator";
  };
} // {
  glrSupport = true;
}