Added luit

svn path=/nixpkgs/branches/stdenv-updates/; revision=10463
This commit is contained in:
Yury G. Kudryashov 2008-02-02 20:41:40 +00:00
parent 0facf68545
commit a01c3860e5
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,17 @@
args: with args;
stdenv.mkDerivation rec {
name = "luit-20060820";
src = fetchurl {
url = "${meta.homepage}/${name}.tgz";
sha256 = "0cxf4agl7ky3ip01qi1vzmis8y1ddngbi2fi0q6bzv1jw458rlpi";
};
buildInputs = [libXt zlib pkgconfig libXfont libX11 libfontenc];
configureFlags = "--with-locale-alias=${libX11}/share/X11/locale/locale.alias";
meta = {
description = "Luit is a filter that can be run between an arbitrary
application and a UTF-8 terminal emulator.";
homepage = http://invisible-island.net/luit;
};
}

View file

@ -4291,6 +4291,11 @@ rec {
inherit fetchurl stdenv;
};
luit = import ../applications/misc/luit {
inherit fetchurl stdenv zlib pkgconfig;
inherit (xlibs) libXt libX11 libXfont libfontenc;
};
lynx = import ../applications/networking/browsers/lynx {
inherit fetchurl stdenv ncurses openssl;
};