mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 03:12:51 +00:00
Added luit
svn path=/nixpkgs/branches/stdenv-updates/; revision=10463
This commit is contained in:
parent
0facf68545
commit
a01c3860e5
17
pkgs/applications/misc/luit/default.nix
Normal file
17
pkgs/applications/misc/luit/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user