Unverified Commit 6546f2c5 authored by Jörg Thalheim's avatar Jörg Thalheim Committed by GitHub
Browse files

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

chez-mit: use makeFlags, mark as broken
parents 5a17f6ea dcbcaeaa
Loading
Loading
Loading
Loading
+2 −7
Original line number Diff line number Diff line
@@ -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;
  };

}