summary refs log tree commit diff
path: root/pkgs/development/tools/parsing/bison/bison-2.3.nix
blob: c732dd0afcf16355c7f414d3e7acc71bc886c80e (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 = ftp://ftp.nluug.nl/pub/gnu/bison/bison-2.3.tar.bz2;
    md5 = "c18640c6ec31a169d351e3117ecce3ec";
  };
  buildInputs = [m4];

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