diff --git a/pkgs/development/tools/parsing/bison/bison-2.3.nix b/pkgs/development/tools/parsing/bison/bison-2.3.nix new file mode 100644 index 00000000000..bc257fa3832 --- /dev/null +++ b/pkgs/development/tools/parsing/bison/bison-2.3.nix @@ -0,0 +1,14 @@ +{stdenv, fetchurl, m4}: + +assert m4 != null; + +stdenv.mkDerivation { + name = "bison-2.3"; + src = fetchurl { + url = ftp://ftp.nluug.nl/pub/gnu/bison/bison-2.3.tar.bz2; + md5 = "c18640c6ec31a169d351e3117ecce3ec"; + }; + buildInputs = [m4]; +} // { + glrSupport = true; +}