From 218b8ac2a90f021c3f44c1dfd5a5264d384b873d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kasper=20Ga=C5=82kowski?= Date: Mon, 27 Mar 2023 22:06:48 +0200 Subject: [PATCH] clpm: fix build It wasn't building because of a too new version of SBCL --- pkgs/development/tools/clpm/default.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/clpm/default.nix b/pkgs/development/tools/clpm/default.nix index 9bed1569e1e8..8930815afdee 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 '';