distro: Add GNU Zile.
[jackhill/guix/guix.git] / distro / packages / zile.scm
CommitLineData
fb9821f0
LC
1;;; Guix --- Nix package management from Guile. -*- coding: utf-8 -*-
2;;; Copyright (C) 2012 Ludovic Courtès <ludo@gnu.org>
3;;;
4;;; This file is part of Guix.
5;;;
6;;; Guix is free software; you can redistribute it and/or modify it
7;;; under the terms of the GNU General Public License as published by
8;;; the Free Software Foundation; either version 3 of the License, or (at
9;;; your option) any later version.
10;;;
11;;; Guix is distributed in the hope that it will be useful, but
12;;; WITHOUT ANY WARRANTY; without even the implied warranty of
13;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14;;; GNU General Public License for more details.
15;;;
16;;; You should have received a copy of the GNU General Public License
17;;; along with Guix. If not, see <http://www.gnu.org/licenses/>.
18
19(define-module (distro packages zile)
20 #:use-module (guix download)
21 #:use-module (guix packages)
22 #:use-module (guix build-system gnu)
23 #:use-module (distro packages bdw-gc)
24 #:use-module (distro packages perl)
25 #:use-module (distro packages help2man)
26 #:use-module (distro packages ncurses))
27
28(define-public zile
29 (package
30 (name "zile")
31 (version "2.4.9")
32 (source
33 (origin
34 (method url-fetch)
35 (uri (string-append "mirror://gnu/zile/zile-"
36 version ".tar.gz"))
37 (sha256
38 (base32
39 "0j801c28ypm924rw3lqyb6khxyslg6ycrv16wmmwcam0mk3mj6f7"))))
40 (build-system gnu-build-system)
41 (inputs
42 `(("boehm-gc" ,libgc)
43 ("ncurses" ,ncurses)
44 ("perl" ,perl)
45 ("help2man" ,help2man)))
46 (home-page "http://www.gnu.org/software/zile/")
47 (synopsis "GNU Zile, a lightweight Emacs clone")
48 (description
49 "GNU Zile, which is a lightweight Emacs clone. Zile is short
50for Zile Is Lossy Emacs. Zile has been written to be as
51similar as possible to Emacs; every Emacs user should feel at
52home.
53
54Zile has all of Emacs's basic editing features: it is 8-bit
55clean (though it currently lacks Unicode support), and the
56number of editing buffers and windows is only limited by
57available memory and screen space respectively. Registers,
58minibuffer completion and auto fill are available. Function
59and variable names are identical with Emacs's (except those
60containing the word \"emacs\", which instead contain the word
61\"zile\"!).
62
63However, all of this is packed into a program which typically
64compiles to about 130Kb.")
65 (license "GPLv3+")))