* Finally a real web browser!

svn path=/nixpkgs/trunk/; revision=1180
This commit is contained in:
Eelco Dolstra 2004-07-26 10:33:58 +00:00
parent 8570f75704
commit 45ac835af6
4 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,5 @@
. $stdenv/setup
export CFLAGS="-I$ncurses/include/ncurses"
genericBuild

View File

@ -0,0 +1,17 @@
{ stdenv, fetchurl, ncurses
, sslSupport ? true, openssl ? null
}:
assert sslSupport -> openssl != null;
stdenv.mkDerivation {
name = "lynx-2.8.5";
builder = ./builder.sh;
src = fetchurl {
url = http://lynx.isc.org/release/lynx2.8.5.tar.bz2;
md5 = "d1e5134e5d175f913c16cb6768bc30eb";
};
inherit ncurses;
configureFlags = (if sslSupport then "--with-ssl" else "");
buildInputs = [ncurses (if sslSupport then openssl else null)];
}

View File

@ -595,6 +595,10 @@ rec {
inherit (gnome) libIDL;
};
lynx = (import ../applications/networking/browsers/lynx) {
inherit fetchurl stdenv ncurses openssl;
};
MPlayer = (import ../applications/video/MPlayer) {
inherit fetchurl stdenv freetype x11 zlib;
inherit (xlibs) libXv;

View File

@ -46,6 +46,7 @@ let {
pan
sylpheed
firefox
lynx
MPlayer
MPlayerPlugin
vlc