summary refs log tree commit diff
path: root/pkgs/development/tools/parsing/bison/default.nix
blob: 7c08550b87f2e6d1779096ce4debebbe5c55bf99 (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 = ftp://ftp.nluug.nl/pub/gnu/bison/bison-1.875.tar.bz2;
    md5 = "b7f8027b249ebd4dd0cc948943a71af0";
  };
  buildInputs = [m4];
} // {
  glrSupport = false;
}