nixpkgs/pkgs/development/tools/parsing/bison/bison-1.875.nix
Eelco Dolstra 704e51d3e2 * Reenable the check phase in Bison 2.4.
* Use the passthru attribute.

svn path=/nixpkgs/trunk/; revision=13295
2008-11-14 15:53:07 +00:00

14 lines
273 B
Nix

{stdenv, fetchurl, m4}:
assert m4 != null;
stdenv.mkDerivation {
name = "bison-1.875";
src = fetchurl {
urls = mirror://gnu/bison/bison-1.875.tar.bz2;
md5 = "b7f8027b249ebd4dd0cc948943a71af0";
};
buildInputs = [m4];
passthru = { glrSupport = true; };
}