clpm: fix build

It wasn't building because of a too new version of SBCL
This commit is contained in:
Kasper Gałkowski
2023-03-28 14:04:30 +02:00
parent 6e8b45e49f
commit 218b8ac2a9
+5 -3
View File
@@ -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
'';