3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #174624 from risicle/ris-elinks-disable-perl-on-darwin

elinks: disable perl support on darwin
This commit is contained in:
Gabriel Ebner 2022-05-26 11:54:07 +02:00 committed by GitHub
commit fe6535efc0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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
}: