1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-02-16 07:48:58 +00:00

add bison 2.1

svn path=/nixpkgs/trunk/; revision=4150
This commit is contained in:
Armijn Hemel 2005-10-26 21:30:49 +00:00
parent 5297aa3a43
commit 3f5a0c251a

View 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;
}