w3m: Add mouse support for completeness.
I'm personally not using mouse/gpm support for w3m, because I find it somewhat too awkward when copy/pasting text. But maybe there are users out there who want to have it. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
parent
194e9d929c
commit
9d71bb96c0
@ -1,12 +1,15 @@
|
|||||||
{ stdenv, fetchurl
|
{ stdenv, fetchurl
|
||||||
, sslSupport ? true
|
, sslSupport ? true
|
||||||
, graphicsSupport ? false
|
, graphicsSupport ? false
|
||||||
|
, mouseSupport ? false
|
||||||
, ncurses, openssl ? null, boehmgc, gettext, zlib
|
, ncurses, openssl ? null, boehmgc, gettext, zlib
|
||||||
, imlib2 ? null, x11 ? null, fbcon ? null
|
, imlib2 ? null, x11 ? null, fbcon ? null
|
||||||
|
, gpm ? null
|
||||||
}:
|
}:
|
||||||
|
|
||||||
assert sslSupport -> openssl != null;
|
assert sslSupport -> openssl != null;
|
||||||
assert graphicsSupport -> imlib2 != null && (x11 != null || fbcon != null);
|
assert graphicsSupport -> imlib2 != null && (x11 != null || fbcon != null);
|
||||||
|
assert mouseSupport -> gpm != null;
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "w3m-0.5.3";
|
name = "w3m-0.5.3";
|
||||||
@ -22,6 +25,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
buildInputs = [ncurses boehmgc gettext zlib]
|
buildInputs = [ncurses boehmgc gettext zlib]
|
||||||
++ stdenv.lib.optional sslSupport openssl
|
++ stdenv.lib.optional sslSupport openssl
|
||||||
|
++ stdenv.lib.optional mouseSupport gpm
|
||||||
++ stdenv.lib.optionals graphicsSupport [imlib2 x11 fbcon];
|
++ stdenv.lib.optionals graphicsSupport [imlib2 x11 fbcon];
|
||||||
|
|
||||||
configureFlags = "--with-ssl=${openssl} --with-gc=${boehmgc}"
|
configureFlags = "--with-ssl=${openssl} --with-gc=${boehmgc}"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user