* Reenable the check phase in Bison 2.4.

* Use the passthru attribute.

svn path=/nixpkgs/trunk/; revision=13295
This commit is contained in:
Eelco Dolstra 2008-11-14 15:53:07 +00:00
parent 30d9dba60c
commit 704e51d3e2
3 changed files with 7 additions and 11 deletions

View File

@ -5,12 +5,9 @@ assert m4 != null;
stdenv.mkDerivation {
name = "bison-1.875";
src = fetchurl {
urls = [ http://nix.cs.uu.nl/dist/tarballs/bison-1.875.tar.bz2
ftp://ftp.gnu.org/pub/gnu/bison/bison-1.875.tar.bz2
];
urls = mirror://gnu/bison/bison-1.875.tar.bz2;
md5 = "b7f8027b249ebd4dd0cc948943a71af0";
};
buildInputs = [m4];
} // {
glrSupport = false;
passthru = { glrSupport = true; };
}

View File

@ -31,6 +31,6 @@ stdenv.mkDerivation {
license = "GPLv2+";
};
} // {
glrSupport = true;
passthru = { glrSupport = true; };
}

View File

@ -10,8 +10,7 @@ stdenv.mkDerivation rec {
buildInputs = [m4];
#doCheck = true;
doCheck = false;
doCheck = true;
meta = {
description = "GNU Bison, a Yacc-compatible parser generator";
@ -34,6 +33,6 @@ stdenv.mkDerivation rec {
license = "GPLv3+";
};
} // {
glrSupport = true;
passthru = { glrSupport = true; };
}