Merge pull request #206745 from trofi/clisp-fix-readline

clisp: pin to readline6 to fix the build
This commit is contained in:
Sergei Trofimovich 2022-12-19 07:46:15 +00:00 committed by GitHub
commit c4ae266de9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15811,7 +15811,13 @@ with pkgs;
openssl = openssl_1_1;
};
clisp = callPackage ../development/interpreters/clisp { };
clisp = callPackage ../development/interpreters/clisp {
# On newer readline8 fails as:
# #<FOREIGN-VARIABLE "rl_readline_state" #x...>
# does not have the required size or alignment
readline = readline6;
};
clisp-tip = callPackage ../development/interpreters/clisp/hg.nix { };
clojupyter = callPackage ../applications/editors/jupyter-kernels/clojupyter {