pkgs/development/interpreters/maude: don't run the test suite on Darwin; it's known to fail
svn path=/nixpkgs/trunk/; revision=24073
This commit is contained in:
parent
5649af8523
commit
e3d3ee1af3
|
@ -17,7 +17,9 @@ stdenv.mkDerivation rec {
|
|||
|
||||
configurePhase = ''./configure --disable-dependency-tracking --prefix=$out --datadir=$out/share/maude TECLA_LIBS="-ltecla -lncursesw" CFLAGS="-O3" CXXFLAGS="-O3"'';
|
||||
|
||||
doCheck = true;
|
||||
# The test suite is known to fail on Darwin. If maude is ever updated to a
|
||||
# new version, this exception ought to be removed again.
|
||||
doCheck = !stdenv.isDarwin;
|
||||
|
||||
postInstall =
|
||||
''
|
||||
|
|
Loading…
Reference in New Issue