Skip to content

Commit

Permalink
fix: CFFI & Clisp & !Linux = broken
Browse files Browse the repository at this point in the history
  • Loading branch information
hraban committed Oct 16, 2023
1 parent c21f5ff commit df1dca7
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions lisp-packages-lite.nix
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,11 @@ rec {
(builtins.readFile ./cffi-setup-hook.sh ))
else ./cffi-setup-hook.sh
)];
# CFFI requires CLISP compiled with dynamic FFI support, which only
# enabled on Linux
meta = systems: a.optionalAttrs (b.elem "cffi" systems) {
broken = ! (lispName == "clisp" -> pkgs.stdenv.isLinux);
};
}) cffi cffi-grovel;

calispel = lispDerivation {
Expand Down

0 comments on commit df1dca7

Please sign in to comment.