Added some features to elinks

svn path=/nixpkgs/trunk/; revision=9630
This commit is contained in:
Yury G. Kudryashov 2007-11-11 15:52:09 +00:00
parent 711180395a
commit 80ba72a288
2 changed files with 7 additions and 4 deletions

View file

@ -1,4 +1,4 @@
{stdenv, fetchurl, python, perl, ncurses, x11, zlib, openssl}:
args: with args;
stdenv.mkDerivation {
name = "elinks-0.11.3";
@ -8,8 +8,10 @@ stdenv.mkDerivation {
sha256 = "c10e657fbd884eae4f01b91b32407bbfcbcae0ad5017fb24ea365aebc71d2af1";
};
buildInputs = [ python perl ncurses x11 zlib openssl ];
configureFlags = "--with-perl --with-python";
buildInputs = [python perl ncurses x11 bzip2 zlib openssl spidermonkey guile];
configureFlags = "--enable-finger --enable-html-highlight --with-guile
--with-perl --with-python --enable-gopher --enable-cgi --enable-bittorrent
--enable-nntp --with-openssl=${openssl}";
meta = {
description = "Full-Featured Text WWW Browser";

View file

@ -3567,7 +3567,8 @@ rec {
eclipseSpoofax = lowPrio (appendToName "with-spoofax" (eclipse [spoofax]));
elinks = import ../applications/networking/browsers/elinks {
inherit stdenv fetchurl python perl ncurses x11 zlib openssl;
inherit stdenv fetchurl python perl ncurses x11 zlib openssl spidermonkey
guile bzip2;
};
emacs = emacs22;