Merge pull request #11513 from oxij/fix-w3m-on-darwin

w3m: turn off mouseSupport on Darwin
This commit is contained in:
Arseniy Seroka 2015-12-07 03:03:08 +03:00
commit f6754747bd

View file

@ -3,7 +3,7 @@
, sslSupport ? true, openssl ? null
, graphicsSupport ? true, imlib2 ? null
, x11Support ? graphicsSupport, libX11 ? null
, mouseSupport ? true, gpm-ncurses ? null
, mouseSupport ? !stdenv.isDarwin, gpm-ncurses ? null
}:
assert sslSupport -> openssl != null;