add bison 2.1
svn path=/nixpkgs/trunk/; revision=4150
This commit is contained in:
parent
5297aa3a43
commit
3f5a0c251a
14
pkgs/development/tools/parsing/bison/bison-2.1.nix
Normal file
14
pkgs/development/tools/parsing/bison/bison-2.1.nix
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
{stdenv, fetchurl, m4}:
|
||||||
|
|
||||||
|
assert m4 != null;
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "bison-2.1";
|
||||||
|
src = fetchurl {
|
||||||
|
url = ftp://ftp.nluug.nl/pub/gnu/bison/bison-2.1.tar.bz2;
|
||||||
|
md5 = "ef3110077462b1140b2ae612626e8486";
|
||||||
|
};
|
||||||
|
buildInputs = [m4];
|
||||||
|
} // {
|
||||||
|
glrSupport = true;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user