gnu: icecat: Update to 78.10.0-guix0-preview1 [security fixes].
[jackhill/guix/guix.git] / gnu / packages / moe.scm
CommitLineData
350b9b99 1;;; GNU Guix --- Functional package management for GNU
59b53c42 2;;; Copyright © 2014, 2015, 2017 Eric Bavier <bavier@member.fsf.org>
6b64bba8 3;;; Copyright © 2016, 2019, 2021 Efraim Flashner <efraim@flashner.co.il>
350b9b99
EB
4;;;
5;;; This file is part of GNU Guix.
6;;;
7;;; GNU Guix is free software; you can redistribute it and/or modify it
8;;; under the terms of the GNU General Public License as published by
9;;; the Free Software Foundation; either version 3 of the License, or (at
10;;; your option) any later version.
11;;;
12;;; GNU Guix is distributed in the hope that it will be useful, but
13;;; WITHOUT ANY WARRANTY; without even the implied warranty of
14;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15;;; GNU General Public License for more details.
16;;;
17;;; You should have received a copy of the GNU General Public License
18;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
19
20(define-module (gnu packages moe)
644353d8 21 #:use-module ((guix licenses) #:select (gpl2+))
350b9b99 22 #:use-module (gnu packages ncurses)
38cf2ba0 23 #:use-module (gnu packages compression)
350b9b99
EB
24 #:use-module (guix packages)
25 #:use-module (guix download)
26 #:use-module (guix build-system gnu))
27
28(define-public moe
29 (package
30 (name "moe")
6b64bba8 31 (version "1.11")
350b9b99
EB
32 (source
33 (origin
34 (method url-fetch)
35 (uri (string-append "mirror://gnu/moe/moe-"
f4bf3782 36 version ".tar.lz"))
350b9b99
EB
37 (sha256
38 (base32
6b64bba8 39 "1yg2ln2mm6gzv61cxnv60dw1cr5bl2dhkjy685jrd3aabb7wpyqf"))))
350b9b99 40 (build-system gnu-build-system)
f4bf3782
EB
41 (native-inputs `(("lzip" ,lzip)))
42 (inputs `(("ncurses" ,ncurses)))
350b9b99
EB
43 (home-page "https://www.gnu.org/software/moe/moe.html")
44 (synopsis "Modeless, multiple-buffer, user-friendly 8-bit text editor")
45 (description
46 "GNU Moe is a powerful-but-simple-to-use text editor. It works in a
47modeless manner, and features an intuitive set of key-bindings that
48assign a degree of severity to each key; for example, key
49combinations with the Alt key are for harmless commands like cursor
50movements while combinations with the Control key are for commands
51that will modify the text. Moe features multiple windows, unlimited
52undo/redo, unlimited line length, global search and replace, and
53more.")
644353d8 54 (license gpl2+)))