2006-04-28 21:02:52 +02:00
|
|
|
{ stdenv, fetchurl
|
2015-08-18 22:37:49 +02:00
|
|
|
, ncurses, boehmgc, gettext, zlib
|
|
|
|
, sslSupport ? true, openssl ? null
|
|
|
|
, graphicsSupport ? true, imlib2 ? null
|
|
|
|
, x11Support ? graphicsSupport, libX11 ? null
|
2015-12-06 21:40:38 +01:00
|
|
|
, mouseSupport ? !stdenv.isDarwin, gpm-ncurses ? null
|
2005-09-14 18:23:02 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
assert sslSupport -> openssl != null;
|
2015-08-18 22:37:49 +02:00
|
|
|
assert graphicsSupport -> imlib2 != null;
|
|
|
|
assert x11Support -> graphicsSupport && libX11 != null;
|
2015-09-14 17:46:48 +02:00
|
|
|
assert mouseSupport -> gpm-ncurses != null;
|
2005-09-14 18:23:02 +02:00
|
|
|
|
2015-08-18 22:37:49 +02:00
|
|
|
with stdenv.lib;
|
|
|
|
|
2011-04-30 11:20:59 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "w3m-0.5.3";
|
2008-11-14 12:16:54 +01:00
|
|
|
|
2005-09-14 18:23:02 +02:00
|
|
|
src = fetchurl {
|
2011-04-30 11:20:59 +02:00
|
|
|
url = "mirror://sourceforge/w3m/${name}.tar.gz";
|
|
|
|
sha256 = "1qx9f0kprf92r1wxl3sacykla0g04qsi0idypzz24b7xy9ix5579";
|
2005-09-14 18:23:02 +02:00
|
|
|
};
|
2008-11-14 12:16:54 +01:00
|
|
|
|
2015-11-17 11:20:33 +01:00
|
|
|
NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isSunOS "-lsocket -lnsl";
|
2013-12-21 13:48:11 +01:00
|
|
|
|
2015-11-26 13:49:01 +01:00
|
|
|
patches = [ ./glibc214.patch ./RAND_egd.libressl.patch ]
|
2012-10-16 20:33:08 +02:00
|
|
|
# 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.
|
2015-08-18 22:37:49 +02:00
|
|
|
++ optional (boehmgc.name != "boehm-gc-7.1") [ ./newgc.patch ]
|
|
|
|
++ optional stdenv.isCygwin ./cygwin.patch
|
|
|
|
# for frame buffer only version
|
|
|
|
++ optional (graphicsSupport && !x11Support) [ ./no-x11.patch ];
|
2010-08-21 19:07:03 +02:00
|
|
|
|
2008-11-14 12:16:54 +01:00
|
|
|
buildInputs = [ncurses boehmgc gettext zlib]
|
2015-08-18 22:37:49 +02:00
|
|
|
++ optional sslSupport openssl
|
|
|
|
++ optional mouseSupport gpm-ncurses
|
|
|
|
++ optional graphicsSupport imlib2
|
|
|
|
++ optional x11Support libX11;
|
2008-11-14 12:16:54 +01:00
|
|
|
|
2012-09-05 02:55:35 +02:00
|
|
|
configureFlags = "--with-ssl=${openssl} --with-gc=${boehmgc}"
|
2015-08-18 22:37:49 +02:00
|
|
|
+ optionalString graphicsSupport " --enable-image=${optionalString x11Support "x11,"}fb";
|
2008-11-14 12:16:54 +01:00
|
|
|
|
|
|
|
preConfigure = ''
|
2012-07-31 23:34:52 +02: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 12:16:54 +01:00
|
|
|
substituteInPlace ./configure --replace /usr /no-such-path
|
|
|
|
'';
|
2008-01-30 20:49:42 +01:00
|
|
|
|
2013-01-17 14:34:58 +01:00
|
|
|
enableParallelBuilding = false;
|
2012-10-16 20:33:08 +02:00
|
|
|
|
2015-08-18 22:37:49 +02:00
|
|
|
# for w3mimgdisplay
|
|
|
|
LIBS = optionalString x11Support "-lX11";
|
|
|
|
|
|
|
|
meta = {
|
2008-11-14 12:16:54 +01:00
|
|
|
homepage = http://w3m.sourceforge.net/;
|
|
|
|
description = "A text-mode web browser";
|
2014-09-13 13:51:39 +02:00
|
|
|
maintainers = [ maintainers.mornfall ];
|
2008-01-30 20:49:42 +01:00
|
|
|
};
|
2005-09-14 18:23:02 +02:00
|
|
|
}
|