From 9b103fac08e1cd89e5699bf9a2b4b137369ade9c Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Wed, 25 May 2022 23:22:12 +0100 Subject: elinks: disable perl support on darwin currently causes a header mixup with LIST_HEAD macros --- pkgs/applications/networking/browsers/elinks/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkgs/applications/networking/browsers/elinks/default.nix') diff --git a/pkgs/applications/networking/browsers/elinks/default.nix b/pkgs/applications/networking/browsers/elinks/default.nix index 84f46f1b60d..1daa5d351a8 100644 --- a/pkgs/applications/networking/browsers/elinks/default.nix +++ b/pkgs/applications/networking/browsers/elinks/default.nix @@ -4,7 +4,7 @@ , # Incompatible licenses, LGPLv3 - GPLv2 enableGuile ? false, guile ? null , enablePython ? false, python ? null -, enablePerl ? (stdenv.hostPlatform == stdenv.buildPlatform), perl ? null +, enablePerl ? (!stdenv.isDarwin) && (stdenv.hostPlatform == stdenv.buildPlatform), perl ? null # re-add javascript support when upstream supports modern spidermonkey }: -- cgit 1.4.1