summary refs log tree commit diff
path: root/pkgs/development/tools/parsing/bison/default.nix
blob: ba3926878c424a72d1a2bc30a61a3e7d95f69e28 (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.875";
  src = fetchurl {
    url = http://catamaran.labs.cs.uu.nl/dist/tarballs/bison-1.875.tar.bz2;
    md5 = "b7f8027b249ebd4dd0cc948943a71af0";
  };
  buildInputs = [m4];
} // {
  glrSupport = false;
}