add bison 2.3
svn path=/nixpkgs/trunk/; revision=5547
This commit is contained in:
parent
a7aad4da66
commit
893557450c
14
pkgs/development/tools/parsing/bison/bison-2.3.nix
Normal file
14
pkgs/development/tools/parsing/bison/bison-2.3.nix
Normal file
@ -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;
|
||||
}
|
Loading…
Reference in New Issue
Block a user