2006-04-28 21:02:52 +02:00
|
|
|
{ stdenv, fetchurl
|
|
|
|
, sslSupport ? true
|
|
|
|
, graphicsSupport ? false
|
|
|
|
, ncurses, openssl ? null, boehmgc, gettext, zlib, gdkpixbuf ? null
|
2005-09-14 18:23:02 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
assert sslSupport -> openssl != null;
|
2006-04-28 21:02:52 +02:00
|
|
|
assert graphicsSupport -> gdkpixbuf != null;
|
2005-09-14 18:23:02 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2007-09-11 22:05:54 +02:00
|
|
|
name = "w3m-0.5.2";
|
2005-09-14 18:23:02 +02:00
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
2007-09-11 22:05:54 +02:00
|
|
|
url = mirror://sourceforge/w3m/w3m-0.5.2.tar.gz;
|
|
|
|
md5 = "ba06992d3207666ed1bf2dcf7c72bf58";
|
2005-09-14 18:23:02 +02:00
|
|
|
};
|
2005-09-16 11:18:49 +02:00
|
|
|
inherit openssl boehmgc;
|
2006-04-28 21:02:52 +02:00
|
|
|
buildInputs = [
|
|
|
|
ncurses boehmgc gettext zlib
|
|
|
|
(if sslSupport then openssl else null)
|
|
|
|
(if graphicsSupport then gdkpixbuf else null)
|
|
|
|
];
|
2007-09-11 22:05:54 +02:00
|
|
|
#patches = [./bsd.patch];
|
2008-01-30 20:49:42 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://w3m.sourceforge.net;
|
|
|
|
};
|
2005-09-14 18:23:02 +02:00
|
|
|
}
|