summary refs log tree commit diff
path: root/pkgs/development/tools/parsing/bison/bison-2.3.nix
blob: bc257fa38327535d6bb2cd645490a674a00df4a1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{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];
} // {
  glrSupport = true;
}