about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/tools/clpm/default.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/development/tools/clpm/default.nix b/pkgs/development/tools/clpm/default.nix
index 9bed1569e1e86..8930815afdee7 100644
--- a/pkgs/development/tools/clpm/default.nix
+++ b/pkgs/development/tools/clpm/default.nix
@@ -2,7 +2,9 @@
 , stdenv
 , fetchgit
 , wrapLisp
-, sbcl
+# Broken on newer versions:
+# https://gitlab.common-lisp.net/clpm/clpm/-/issues/51
+, sbcl_2_0_8
 , openssl
 }:
 
@@ -18,7 +20,7 @@ stdenv.mkDerivation rec {
   };
 
   buildInputs = [
-    sbcl
+    sbcl_2_0_8
   ];
 
   propagatedBuildInputs = [
@@ -40,7 +42,7 @@ stdenv.mkDerivation rec {
     # ld to complaing about `impure path used in link`.
     export HOME=$TMP
 
-    common-lisp.sh --script scripts/build-release.lisp
+    sbcl --script scripts/build-release.lisp
 
     runHook postBuild
   '';