2005-09-14 18:23:02 +02:00
|
|
|
{ stdenv, fetchurl, ncurses
|
|
|
|
, sslSupport ? true, openssl ? null, boehmgc, gettext
|
|
|
|
}:
|
|
|
|
|
|
|
|
assert sslSupport -> openssl != null;
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "w3m-0.5.1";
|
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
2006-01-30 17:04:03 +01:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/w3m-0.5.1.tar.gz;
|
2005-09-14 18:23:02 +02:00
|
|
|
md5 = "0678b72e07e69c41709d71ef0fe5da13";
|
|
|
|
};
|
2005-09-16 11:18:49 +02:00
|
|
|
inherit openssl boehmgc;
|
2005-09-14 18:23:02 +02:00
|
|
|
buildInputs = [ncurses (if sslSupport then openssl else null) boehmgc gettext];
|
2005-09-16 11:35:02 +02:00
|
|
|
patches = [./bsd.patch];
|
2005-09-14 18:23:02 +02:00
|
|
|
}
|