summary refs log tree commit diff
path: root/pkgs/development/tools/parsing/bison/bison-2.1.nix
blob: cfeb6f53afd7c21c99c0113cf55aa1106dde28ae (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.1";
  src = fetchurl {
    url = ftp://ftp.nluug.nl/pub/gnu/bison/bison-2.1.tar.bz2;
    md5 = "ef3110077462b1140b2ae612626e8486";
  };
  buildInputs = [m4];
} // {
  glrSupport = true;
}