about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2024-05-17 18:20:35 +0200
committerGitHub <noreply@github.com>2024-05-17 18:20:35 +0200
commit6546f2c5dbc7d3c5b8b357c1ba3acee6018ef2fc (patch)
treecbb41db6be9c5621f2af97d36eb09ba676b78ac3
parent5a17f6eaf31c7260f0f7d82bca07843f151fce21 (diff)
parentdcbcaeaa1a222c27a20c66eaba1ff8ae9ab4b164 (diff)
Merge pull request #312269 from lucasew/20240516-fix-chez-mit
chez-mit: use makeFlags, mark as broken
-rw-r--r--pkgs/development/chez-modules/chez-mit/default.nix9
1 files changed, 2 insertions, 7 deletions
diff --git a/pkgs/development/chez-modules/chez-mit/default.nix b/pkgs/development/chez-modules/chez-mit/default.nix
index 677e7fc991945..285ee7f14ec9f 100644
--- a/pkgs/development/chez-modules/chez-mit/default.nix
+++ b/pkgs/development/chez-modules/chez-mit/default.nix
@@ -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;
   };
 
 }