* ion-3 and elinks added, missprint in qt-4 corrected

svn path=/nixpkgs/trunk/; revision=8993
This commit is contained in:
Yury G. Kudryashov
2007-07-17 19:29:53 +00:00
parent 09d1b78f21
commit 4b33c46279
6 changed files with 54 additions and 2 deletions
@@ -0,0 +1,17 @@
{stdenv, fetchurl, python, perl, ncurses, x11, zlib, openssl}:
stdenv.mkDerivation {
name = "elinks-0.11.3";
src = fetchurl {
url = http://elinks.or.cz/download/elinks-0.11.3.tar.bz2;
sha256 = "c10e657fbd884eae4f01b91b32407bbfcbcae0ad5017fb24ea365aebc71d2af1";
};
buildInputs = [ python perl ncurses x11 zlib openssl ];
configureFlags = "--with-perl --with-python";
meta = {
description = "Full-Featured Text WWW Browser";
homepage = http://elinks.or.cz;
};
}