6006d61835
svn path=/nixpkgs/trunk/; revision=6705
19 lines
346 B
Nix
19 lines
346 B
Nix
{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];
|
|
|
|
meta = {
|
|
description = "A yacc-compatible parser generator";
|
|
};
|
|
} // {
|
|
glrSupport = true;
|
|
}
|