Merge pull request #232109 from xworld21/revert-231896-clisp-darwin

Revert "clisp: remove broken status on Darwin"

authored by

7c6f434c and committed by
GitHub
d4825e5e 19dba7e4

+4 -4
+3 -2
pkgs/development/interpreters/clisp/default.nix
··· 34 34 35 35 inherit libsigsegv gettext coreutils; 36 36 37 - ffcallAvailable = libffcall != null; 37 + ffcallAvailable = stdenv.isLinux && (libffcall != null); 38 38 39 39 buildInputs = [libsigsegv] 40 40 ++ lib.optional (gettext != null) gettext ··· 101 101 homepage = "http://clisp.cons.org"; 102 102 maintainers = lib.teams.lisp.members; 103 103 platforms = lib.platforms.unix; 104 - broken = stdenv.hostPlatform.isAarch64; 104 + # problems on Darwin: https://github.com/NixOS/nixpkgs/issues/20062 105 + broken = stdenv.hostPlatform.isDarwin || stdenv.hostPlatform.isAarch64; 105 106 license = lib.licenses.gpl2; 106 107 }; 107 108 }
+1 -2
pkgs/development/interpreters/clisp/hg.nix
··· 93 93 homepage = "http://clisp.cons.org"; 94 94 maintainers = lib.teams.lisp.members; 95 95 # problems on Darwin: https://github.com/NixOS/nixpkgs/issues/20062 96 - platforms = lib.platforms.unix; 97 - broken = stdenv.hostPlatform.isDarwin; 96 + platforms = lib.platforms.linux; 98 97 }; 99 98 }