* 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 {
|
stdenv.mkDerivation {
|
||||||
name = "bison-1.875";
|
name = "bison-1.875";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
urls = [ http://nix.cs.uu.nl/dist/tarballs/bison-1.875.tar.bz2
|
urls = mirror://gnu/bison/bison-1.875.tar.bz2;
|
||||||
ftp://ftp.gnu.org/pub/gnu/bison/bison-1.875.tar.bz2
|
|
||||||
];
|
|
||||||
md5 = "b7f8027b249ebd4dd0cc948943a71af0";
|
md5 = "b7f8027b249ebd4dd0cc948943a71af0";
|
||||||
};
|
};
|
||||||
buildInputs = [m4];
|
buildInputs = [m4];
|
||||||
} // {
|
passthru = { glrSupport = true; };
|
||||||
glrSupport = false;
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -31,6 +31,6 @@ stdenv.mkDerivation {
|
||||||
|
|
||||||
license = "GPLv2+";
|
license = "GPLv2+";
|
||||||
};
|
};
|
||||||
} // {
|
|
||||||
glrSupport = true;
|
passthru = { glrSupport = true; };
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,8 +10,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
buildInputs = [m4];
|
buildInputs = [m4];
|
||||||
|
|
||||||
#doCheck = true;
|
doCheck = true;
|
||||||
doCheck = false;
|
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "GNU Bison, a Yacc-compatible parser generator";
|
description = "GNU Bison, a Yacc-compatible parser generator";
|
||||||
|
@ -34,6 +33,6 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
license = "GPLv3+";
|
license = "GPLv3+";
|
||||||
};
|
};
|
||||||
} // {
|
|
||||||
glrSupport = true;
|
passthru = { glrSupport = true; };
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue