Merge pull request #312269 from lucasew/20240516-fix-chez-mit

chez-mit: use makeFlags, mark as broken
This commit is contained in:
Jörg Thalheim
2024-05-17 18:20:35 +02:00
committed by GitHub
@@ -13,13 +13,7 @@ stdenv.mkDerivation rec {
buildInputs = [ chez chez-srfi ];
buildPhase = ''
make PREFIX=$out CHEZ=${chez}/bin/scheme
'';
installPhase = ''
make install PREFIX=$out CHEZ=${chez}/bin/scheme
'';
makeFlags = [ "CHEZ=${lib.getExe chez}" ];
doCheck = false;
@@ -28,6 +22,7 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/fedeinthemix/chez-mit/";
maintainers = [ maintainers.jitwit ];
license = licenses.gpl3Plus;
broken = true;
};
}