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:
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 a new issue