2007-11-11 16:52:09 +01:00
|
|
|
args: with args;
|
2007-07-17 21:29:53 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "elinks-0.11.3";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = http://elinks.or.cz/download/elinks-0.11.3.tar.bz2;
|
|
|
|
sha256 = "c10e657fbd884eae4f01b91b32407bbfcbcae0ad5017fb24ea365aebc71d2af1";
|
|
|
|
};
|
|
|
|
|
2007-11-12 14:51:46 +01:00
|
|
|
buildInputs = [python perl ncurses x11 bzip2 zlib openssl spidermonkey guile];
|
2007-11-11 16:52:09 +01:00
|
|
|
configureFlags = "--enable-finger --enable-html-highlight --with-guile
|
|
|
|
--with-perl --with-python --enable-gopher --enable-cgi --enable-bittorrent
|
|
|
|
--enable-nntp --with-openssl=${openssl}";
|
2007-09-11 13:15:37 +02:00
|
|
|
|
2007-07-17 21:29:53 +02:00
|
|
|
meta = {
|
2007-09-11 13:15:37 +02:00
|
|
|
description = "Full-Featured Text WWW Browser";
|
|
|
|
homepage = http://elinks.or.cz;
|
2007-07-17 21:29:53 +02:00
|
|
|
};
|
|
|
|
}
|