summary refs log tree commit diff
path: root/pkgs/applications/networking/browsers/elinks/default.nix
blob: c5b9894a796a932af5fa2acaee7845b8a1783dc2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
args: with args;

stdenv.mkDerivation rec {
  name = "elinks-0.12pre5";

  src = fetchurl {
    url = http://elinks.or.cz/download/elinks-0.12pre5.tar.bz2;
    sha256 = "1li4vlbq8wvnigxlkzb15490y90jg6y9yzzrqpqcz2h965w5869d";
  };

  buildInputs = [python perl ncurses x11 bzip2 zlib openssl spidermonkey guile gpm];
  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";
    homepage = http://elinks.or.cz;
  };
}