From cf25944d02f2c1703e278115bdaad4dced26d950 Mon Sep 17 00:00:00 2001 From: storvik Date: Sun, 11 Apr 2021 09:21:35 +0200 Subject: [PATCH] clpm: use sbcl 2.0.9 when building Use SBCL < 2.1.0 when building as SB-VM::MAKE-EA was removed. --- pkgs/development/tools/clpm/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/clpm/default.nix b/pkgs/development/tools/clpm/default.nix index 0dfa99367ac6..ae2e1011ae25 100644 --- a/pkgs/development/tools/clpm/default.nix +++ b/pkgs/development/tools/clpm/default.nix @@ -2,7 +2,7 @@ , stdenv , fetchgit , wrapLisp -, sbcl +, sbcl_2_0_9 , openssl }: @@ -18,7 +18,7 @@ stdenv.mkDerivation rec { }; buildInputs = [ - (wrapLisp sbcl) + (wrapLisp sbcl_2_0_9) openssl ];