mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-24 20:02:58 +03:00
Added some features to elinks
svn path=/nixpkgs/trunk/; revision=9630
This commit is contained in:
parent
711180395a
commit
80ba72a288
@ -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";
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user