2007-11-11 16:52:09 +01:00
|
|
|
args: with args;
|
2007-07-17 21:29:53 +02:00
|
|
|
|
2010-04-13 00:56:13 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "elinks-0.12pre5";
|
2007-07-17 21:29:53 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2010-04-13 00:56:13 +02:00
|
|
|
url = http://elinks.or.cz/download/elinks-0.12pre5.tar.bz2;
|
|
|
|
sha256 = "1li4vlbq8wvnigxlkzb15490y90jg6y9yzzrqpqcz2h965w5869d";
|
2007-07-17 21:29:53 +02:00
|
|
|
};
|
|
|
|
|
2010-04-10 22:27:02 +02:00
|
|
|
buildInputs = [python perl ncurses x11 bzip2 zlib openssl spidermonkey guile gpm];
|
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
|
|
|
};
|
|
|
|
}
|