* Reenable the check phase in Bison 2.4.
* Use the passthru attribute. svn path=/nixpkgs/trunk/; revision=13295
This commit is contained in:
parent
30d9dba60c
commit
704e51d3e2
@ -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; };
|
||||
}
|
||||
|
@ -31,6 +31,6 @@ stdenv.mkDerivation {
|
||||
|
||||
license = "GPLv2+";
|
||||
};
|
||||
} // {
|
||||
glrSupport = true;
|
||||
|
||||
passthru = { glrSupport = true; };
|
||||
}
|
||||
|
@ -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; };
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user