summary refs log tree commit diff
path: root/pkgs/development/tools/parsing/bison/bison-new.nix
blob: 00a7f87e776fa7ca67648217153d277bcc479f18 (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-1.875d";
  src = fetchurl {
    url = http://catamaran.labs.cs.uu.nl/dist/tarballs/bison-1.875d.tar.gz;
    md5 = "faaa4a271ca722fb6c769d72e18ade0b";
  };
  buildInputs = [m4];
} // {
  glrSupport = true;
}