summary refs log tree commit diff
path: root/pkgs/development/tools/parsing/bison/bison-2.1.nix
blob: e28d16dc79cb9e28c34eae99b833304d066310a0 (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 = http://nix.cs.uu.nl/dist/tarballs/bison-2.1.tar.bz2;
    md5 = "ef3110077462b1140b2ae612626e8486";
  };
  buildInputs = [m4];
} // {
  glrSupport = true;
}