Merge pull request #168548 from jonringer/fix-chicken-darwin

chicken: disable tests for darwin
This commit is contained in:
Ben Siraphob 2022-04-14 00:41:55 +00:00 committed by GitHub
commit a0e87c6967
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -45,12 +45,17 @@ stdenv.mkDerivation rec {
done
'';
doCheck = true;
doCheck = !stdenv.isDarwin;
postCheck = ''
./csi -R chicken.pathname -R chicken.platform \
-p "(assert (equal? \"${toString binaryVersion}\" (pathname-file (car (repository-path)))))"
'';
doInstallCheck = true;
installCheckPhase = ''
$out/bin/chicken -version
'';
meta = {
homepage = "https://call-cc.org/";
license = lib.licenses.bsd3;