mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
emacs: disable withXwidgets on darwin
withXwidgets requires webkitgtk, which is marked as broken on Darwin.
This commit is contained in:
parent
8334f500dc
commit
104992f3cf
1 changed files with 1 additions and 1 deletions
|
@ -98,7 +98,7 @@
|
|||
, withWebP ? lib.versionAtLeast version "29"
|
||||
, withX ? !(stdenv.isDarwin || noGui || withPgtk)
|
||||
, withXinput2 ? withX && lib.versionAtLeast version "29"
|
||||
, withXwidgets ? !noGui && (withGTK3 || withPgtk)
|
||||
, withXwidgets ? !stdenv.isDarwin && !noGui && (withGTK3 || withPgtk)
|
||||
|
||||
# Options
|
||||
, siteStart ? ./site-start.el
|
||||
|
|
Loading…
Reference in a new issue