2014-09-02 16:57:09 +01:00
|
|
|
{ fetchurl, stdenv, pkgconfig, ncurses, boehmgc, perl, help2man }:
|
2009-02-25 20:24:18 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-11-13 21:15:44 +00:00
|
|
|
name = "zile-2.4.13";
|
2009-02-25 20:24:18 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnu/zile/${name}.tar.gz";
|
2016-11-13 21:15:44 +00:00
|
|
|
sha256 = "03mcg0bxkzprlsx8y6h22w924pzx4a9zr7zm3g11j8j3x9lz75f7";
|
2009-02-25 20:24:18 +00:00
|
|
|
};
|
|
|
|
|
2014-09-02 16:57:09 +01:00
|
|
|
buildInputs = [ pkgconfig ncurses boehmgc ];
|
2012-12-28 18:20:09 +00:00
|
|
|
nativeBuildInputs = [ help2man perl ];
|
2009-02-25 20:24:18 +00:00
|
|
|
|
|
|
|
# Tests can't be run because most of them rely on the ability to
|
|
|
|
# fiddle with the terminal.
|
|
|
|
doCheck = false;
|
|
|
|
|
2011-11-13 21:28:29 +00:00
|
|
|
# XXX: Work around cross-compilation-unfriendly `gl_FUNC_FSTATAT' macro.
|
|
|
|
preConfigure = "export gl_cv_func_fstatat_zero_flag=yes";
|
|
|
|
|
2014-09-02 16:57:09 +01:00
|
|
|
meta = with stdenv.lib; {
|
2014-06-23 12:36:21 +01:00
|
|
|
description = "Lightweight Emacs clone";
|
2009-02-25 20:24:18 +00:00
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
GNU Zile, which is a lightweight Emacs clone. Zile is short
|
|
|
|
for Zile Is Lossy Emacs. Zile has been written to be as
|
|
|
|
similar as possible to Emacs; every Emacs user should feel at
|
|
|
|
home.
|
|
|
|
|
|
|
|
Zile has all of Emacs's basic editing features: it is 8-bit
|
|
|
|
clean (though it currently lacks Unicode support), and the
|
|
|
|
number of editing buffers and windows is only limited by
|
|
|
|
available memory and screen space respectively. Registers,
|
|
|
|
minibuffer completion and auto fill are available. Function
|
|
|
|
and variable names are identical with Emacs's (except those
|
|
|
|
containing the word "emacs", which instead contain the word
|
|
|
|
"zile"!).
|
|
|
|
|
|
|
|
However, all of this is packed into a program which typically
|
|
|
|
compiles to about 130Kb.
|
|
|
|
'';
|
|
|
|
|
|
|
|
homepage = http://www.gnu.org/software/zile/;
|
|
|
|
|
2014-09-02 16:57:09 +01:00
|
|
|
license = licenses.gpl3Plus;
|
2009-07-08 17:44:19 +01:00
|
|
|
|
2014-09-02 16:57:09 +01:00
|
|
|
maintainers = with maintainers; [ pSub ];
|
|
|
|
|
2015-11-28 08:45:36 +00:00
|
|
|
platforms = platforms.unix;
|
2009-02-25 20:24:18 +00:00
|
|
|
};
|
|
|
|
}
|