3
0
Fork 0
forked from mirrors/nixpkgs

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 , sslSupport ? true, openssl ? null
, graphicsSupport ? true, imlib2 ? null , graphicsSupport ? true, imlib2 ? null
, x11Support ? graphicsSupport, libX11 ? null , x11Support ? graphicsSupport, libX11 ? null
, mouseSupport ? true, gpm-ncurses ? null , mouseSupport ? !stdenv.isDarwin, gpm-ncurses ? null
}: }:
assert sslSupport -> openssl != null; assert sslSupport -> openssl != null;