2016-01-09 05:05:13 +01:00
|
|
|
{ stdenv, fetchgit, fetchpatch
|
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
|
2016-01-09 05:05:13 +01:00
|
|
|
, perl, man, pkgconfig
|
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 {
|
2016-01-09 05:05:13 +01:00
|
|
|
name = "w3m-0.5.3-2015-12-20";
|
2008-11-14 12:16:54 +01:00
|
|
|
|
2016-01-09 05:05:13 +01:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://anonscm.debian.org/collab-maint/w3m.git";
|
|
|
|
rev = "e0b6e022810271bd0efcd655006389ee3879e94d";
|
|
|
|
sha256 = "1vahm3719hb0m20nc8k88165z35f8b15qasa0whhk78r12bls1q6";
|
2005-09-14 18:23:02 +02:00
|
|
|
};
|
2008-11-14 12:16:54 +01:00
|
|
|
|
2015-12-25 21:14:20 +01:00
|
|
|
NIX_LDFLAGS = optionalString stdenv.isSunOS "-lsocket -lnsl";
|
2013-12-21 13:48:11 +01:00
|
|
|
|
2015-12-25 21:14:20 +01:00
|
|
|
# we must set these so that the generated files (e.g. w3mhelp.cgi) contain
|
|
|
|
# the correct paths.
|
|
|
|
PERL = "${perl}/bin/perl";
|
|
|
|
MAN = "${man}/bin/man";
|
|
|
|
|
|
|
|
patches = [
|
|
|
|
./RAND_egd.libressl.patch
|
|
|
|
(fetchpatch {
|
|
|
|
name = "https.patch";
|
|
|
|
url = "https://aur.archlinux.org/cgit/aur.git/plain/https.patch?h=w3m-mouse&id=5b5f0fbb59f674575e87dd368fed834641c35f03";
|
|
|
|
sha256 = "08skvaha1hjyapsh8zw5dgfy433mw2hk7qy9yy9avn8rjqj7kjxk";
|
|
|
|
})
|
|
|
|
] ++ optional (graphicsSupport && !x11Support) [ ./no-x11.patch ]
|
|
|
|
++ optional stdenv.isCygwin ./cygwin.patch;
|
2010-08-21 19:07:03 +02:00
|
|
|
|
2016-01-09 05:05:13 +01:00
|
|
|
buildInputs = [ pkgconfig 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
|
|
|
|
2015-12-25 21:14:20 +01:00
|
|
|
postInstall = optionalString graphicsSupport ''
|
|
|
|
ln -s $out/libexec/w3m/w3mimgdisplay $out/bin
|
|
|
|
'';
|
|
|
|
|
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
|
2015-12-25 21:14:20 +01:00
|
|
|
# see: https://bbs.archlinux.org/viewtopic.php?id=196093
|
2015-08-18 22:37:49 +02:00
|
|
|
LIBS = optionalString x11Support "-lX11";
|
|
|
|
|
|
|
|
meta = {
|
2008-11-14 12:16:54 +01:00
|
|
|
homepage = http://w3m.sourceforge.net/;
|
|
|
|
description = "A text-mode web browser";
|
2015-12-25 21:14:20 +01:00
|
|
|
maintainers = [ maintainers.mornfall maintainers.cstrahan ];
|
2008-01-30 20:49:42 +01:00
|
|
|
};
|
2005-09-14 18:23:02 +02:00
|
|
|
}
|