Merge pull request #119103 from storvik/fix-clpm

clpm: build with sbcl 2.0.9
This commit is contained in:
Sandro 2021-04-11 16:30:02 +02:00 committed by GitHub
commit fbecd7794b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,7 +2,7 @@
, stdenv , stdenv
, fetchgit , fetchgit
, wrapLisp , wrapLisp
, sbcl , sbcl_2_0_9
, openssl , openssl
}: }:
@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
}; };
buildInputs = [ buildInputs = [
(wrapLisp sbcl) (wrapLisp sbcl_2_0_9)
openssl openssl
]; ];