2006-04-28 20:02:52 +01:00
|
|
|
{ stdenv, fetchurl
|
|
|
|
, sslSupport ? true
|
|
|
|
, graphicsSupport ? false
|
2012-09-05 01:59:01 +01:00
|
|
|
, mouseSupport ? false
|
2009-10-28 15:06:18 +00:00
|
|
|
, ncurses, openssl ? null, boehmgc, gettext, zlib
|
2015-09-15 10:13:22 +01:00
|
|
|
, imlib2 ? null, xlibsWrapper ? null, fbcon ? null
|
2015-09-14 16:46:48 +01:00
|
|
|
, gpm-ncurses ? null
|
2005-09-14 17:23:02 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
assert sslSupport -> openssl != null;
|
2015-09-15 10:13:22 +01:00
|
|
|
assert graphicsSupport -> imlib2 != null && (xlibsWrapper != null || fbcon != null);
|
2015-09-14 16:46:48 +01:00
|
|
|
assert mouseSupport -> gpm-ncurses != null;
|
2005-09-14 17:23:02 +01:00
|
|
|
|
2011-04-30 10:20:59 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "w3m-0.5.3";
|
2008-11-14 11:16:54 +00:00
|
|
|
|
2005-09-14 17:23:02 +01:00
|
|
|
src = fetchurl {
|
2011-04-30 10:20:59 +01:00
|
|
|
url = "mirror://sourceforge/w3m/${name}.tar.gz";
|
|
|
|
sha256 = "1qx9f0kprf92r1wxl3sacykla0g04qsi0idypzz24b7xy9ix5579";
|
2005-09-14 17:23:02 +01:00
|
|
|
};
|
2008-11-14 11:16:54 +00:00
|
|
|
|
2013-12-21 12:48:11 +00:00
|
|
|
NIX_LDFLAGS = "-lsocket -lnsl";
|
|
|
|
|
2012-10-16 19:33:08 +01:00
|
|
|
patches = [ ./glibc214.patch ]
|
|
|
|
# Patch for the newer unstable boehm-gc 7.2alpha. Not all platforms use that
|
|
|
|
# alpha. At the time of writing this, boehm-gc-7.1 is the last stable.
|
2014-10-23 23:48:06 +01:00
|
|
|
++ stdenv.lib.optional (boehmgc.name != "boehm-gc-7.1") [ ./newgc.patch ]
|
|
|
|
++ stdenv.lib.optional stdenv.isCygwin ./cygwin.patch;
|
2010-08-21 18:07:03 +01:00
|
|
|
|
2008-11-14 11:16:54 +00:00
|
|
|
buildInputs = [ncurses boehmgc gettext zlib]
|
|
|
|
++ stdenv.lib.optional sslSupport openssl
|
2015-09-14 16:46:48 +01:00
|
|
|
++ stdenv.lib.optional mouseSupport gpm-ncurses
|
2015-09-15 10:13:22 +01:00
|
|
|
++ stdenv.lib.optionals graphicsSupport [imlib2 xlibsWrapper fbcon];
|
2008-11-14 11:16:54 +00:00
|
|
|
|
2012-09-05 01:55:35 +01:00
|
|
|
configureFlags = "--with-ssl=${openssl} --with-gc=${boehmgc}"
|
|
|
|
+ stdenv.lib.optionalString graphicsSupport " --enable-image=x11,fb";
|
2008-11-14 11:16:54 +00:00
|
|
|
|
|
|
|
preConfigure = ''
|
2012-07-31 22:34:52 +01:00
|
|
|
substituteInPlace ./configure --replace "/lib /usr/lib /usr/local/lib /usr/ucblib /usr/ccslib /usr/ccs/lib /lib64 /usr/lib64" /no-such-path
|
2008-11-14 11:16:54 +00:00
|
|
|
substituteInPlace ./configure --replace /usr /no-such-path
|
|
|
|
'';
|
2008-01-30 19:49:42 +00:00
|
|
|
|
2013-01-17 13:34:58 +00:00
|
|
|
enableParallelBuilding = false;
|
2012-10-16 19:33:08 +01:00
|
|
|
|
2014-01-28 16:24:00 +00:00
|
|
|
meta = with stdenv.lib; {
|
2008-11-14 11:16:54 +00:00
|
|
|
homepage = http://w3m.sourceforge.net/;
|
|
|
|
description = "A text-mode web browser";
|
2014-09-13 12:51:39 +01:00
|
|
|
maintainers = [ maintainers.mornfall ];
|
2008-01-30 19:49:42 +00:00
|
|
|
};
|
2005-09-14 17:23:02 +01:00
|
|
|
}
|