gnu: emacs-sly: Update to 20200228.
[jackhill/guix/guix.git] / gnu / packages / text-editors.scm
CommitLineData
a2c1dcea
JMSG
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2016 José Miguel Sánchez García <jmi2k@openmailbox.org>
5613ea79 3;;; Copyright © 2016 Carlo Zancanaro <carlo@zancanaro.id.au>
89d3869b 4;;; Copyright © 2017, 2018, 2020 Eric Bavier <bavier@posteo.net>
0bf11648 5;;; Copyright © 2017 Feng Shu <tumashu@163.com>
47956fa0 6;;; Copyright © 2017 ng0 <ng0@n0.is>
bcd757fd 7;;; Copyright © 2014 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.org>
77100119 8;;; Copyright © 2017, 2018, 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
2238211a 9;;; Copyright © 2019 Efraim Flashner <efraim@flashner.co.il>
75a137da 10;;; Copyright © 2019 Andreas Enge <andreas@enge.fr>
1fffba66 11;;; Copyright © 2019, 2020 Nicolas Goaziou <mail@nicolasgoaziou.fr>
a2c1dcea
JMSG
12;;;
13;;; This file is part of GNU Guix.
14;;;
15;;; GNU Guix is free software; you can redistribute it and/or modify it
16;;; under the terms of the GNU General Public License as published by
17;;; the Free Software Foundation; either version 3 of the License, or (at
18;;; your option) any later version.
19;;;
20;;; GNU Guix is distributed in the hope that it will be useful, but
21;;; WITHOUT ANY WARRANTY; without even the implied warranty of
22;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23;;; GNU General Public License for more details.
24;;;
25;;; You should have received a copy of the GNU General Public License
26;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
27
28(define-module (gnu packages text-editors)
29 #:use-module (guix packages)
30 #:use-module (guix download)
5613ea79 31 #:use-module (guix git-download)
a2c1dcea
JMSG
32 #:use-module (guix utils)
33 #:use-module (guix build-system gnu)
2238211a 34 #:use-module (guix build-system cmake)
4f038621 35 #:use-module (guix build-system glib-or-gtk)
1fffba66 36 #:use-module (guix build-system python)
a2c1dcea
JMSG
37 #:use-module ((guix licenses) #:prefix license:)
38 #:use-module (gnu packages)
3312fda0 39 #:use-module (gnu packages assembly)
2363ed01 40 #:use-module (gnu packages autotools)
5613ea79
CZ
41 #:use-module (gnu packages boost)
42 #:use-module (gnu packages documentation)
75a137da 43 #:use-module (gnu packages fontutils)
5613ea79 44 #:use-module (gnu packages gcc)
2207d522 45 #:use-module (gnu packages gettext)
0bf11648
FS
46 #:use-module (gnu packages glib)
47 #:use-module (gnu packages gtk)
75a137da 48 #:use-module (gnu packages guile)
1fffba66 49 #:use-module (gnu packages haskell-xyz)
bcd757fd 50 #:use-module (gnu packages libbsd)
04918a00 51 #:use-module (gnu packages libreoffice)
a2c1dcea
JMSG
52 #:use-module (gnu packages lua)
53 #:use-module (gnu packages ncurses)
2238211a 54 #:use-module (gnu packages pcre)
75a137da 55 #:use-module (gnu packages perl)
0bf11648 56 #:use-module (gnu packages pkg-config)
75a137da 57 #:use-module (gnu packages python)
2363ed01 58 #:use-module (gnu packages python-xyz)
04918a00 59 #:use-module (gnu packages qt)
852ba10a 60 #:use-module (gnu packages regex)
5613ea79 61 #:use-module (gnu packages ruby)
264ccbb3 62 #:use-module (gnu packages terminals)
a78364e9 63 #:use-module (gnu packages texinfo)
fb85b967
NG
64 #:use-module (gnu packages xml)
65 #:use-module (gnu packages xorg))
a2c1dcea
JMSG
66
67(define-public vis
68 (package
69 (name "vis")
dadc8610 70 (version "0.5")
a2c1dcea
JMSG
71 (source (origin
72 (method url-fetch)
7ec38295
EF
73 (uri (string-append "https://github.com/martanne/vis/releases"
74 "/download/v" version
75 "/vis-v" version ".tar.gz"))
a2c1dcea 76 (sha256
852ba10a 77 (base32
7ec38295 78 "0aw35n8xk7ir84ckvczc6yshj9ynishrlz0qlv4yc1afbra1gxmn"))))
a2c1dcea
JMSG
79 (build-system gnu-build-system)
80 (arguments
852ba10a
TGR
81 `(#:test-target "test"
82 #:tests? #f ; no releases; snapshots are missing tests
a2c1dcea
JMSG
83 #:phases
84 (modify-phases %standard-phases
85 (add-after 'install 'wrap-binary
86 (lambda* (#:key inputs outputs #:allow-other-keys)
87 (let* ((out (assoc-ref outputs "out"))
88 (lpeg (assoc-ref inputs "lua-lpeg"))
89 (lua-version ,(version-major+minor (package-version lua)))
90 (LUA_PATH (string-append lpeg "/share/lua/"
91 lua-version "/?.lua"))
92 (LUA_CPATH (string-append lpeg "/lib/lua/"
93 lua-version "/?.so")))
94 (wrap-program (string-append out "/bin/vis")
95 `("LUA_PATH" ":" prefix (,LUA_PATH))
96 `("LUA_CPATH" ":" prefix (,LUA_CPATH)))
97 #t))))))
98 (native-search-paths
99 (list (search-path-specification
100 (variable "VIS_PATH")
101 (files '("share/vis")))))
c695fb76
TGR
102 (inputs `(("lua" ,lua)
103 ("ncurses" ,ncurses)
104 ("libtermkey" ,libtermkey)
105 ("lua-lpeg" ,lua-lpeg)
852ba10a 106 ("tre" ,tre)))
a2c1dcea
JMSG
107 (synopsis "Vim-like text editor")
108 (description
109 "Vis aims to be a modern, legacy free, simple yet efficient vim-like text
110editor. It extends vim's modal editing with built-in support for multiple
111cursors/selections and combines it with sam's structural regular expression
112based command language.")
113 (home-page "https://github.com/martanne/vis")
114 (license (list license:isc ; Main distribution.
115 license:public-domain ; map.[ch]
116 license:expat)))) ; lexers and libutf.[ch]
5613ea79
CZ
117
118(define-public kakoune
fbe8ebec
TGR
119 (package
120 (name "kakoune")
be0a613c 121 (version "2019.12.10")
fbe8ebec
TGR
122 (source
123 (origin
124 (method url-fetch)
125 (uri (string-append "https://github.com/mawww/kakoune/"
126 "releases/download/v" version "/"
a1cb6928 127 "kakoune-" version ".tar.bz2"))
fbe8ebec 128 (sha256
be0a613c 129 (base32 "1y1gzax2dl7flh676k0rl1vacv10j7p5krkmb67b0afbrql8vbb6"))))
fbe8ebec
TGR
130 (build-system gnu-build-system)
131 (arguments
132 `(#:make-flags
133 (list (string-append "PREFIX=" (assoc-ref %outputs "out")))
134 #:phases
135 (modify-phases %standard-phases
136 (add-after 'unpack 'patch-source
137 (lambda _
138 ;; kakoune uses confstr with _CS_PATH to find out where to find
139 ;; a posix shell, but this doesn't work in the build
140 ;; environment. This substitution just replaces that result
141 ;; with the "sh" path.
142 (substitute* "src/shell_manager.cc"
143 (("if \\(m_shell.empty\\(\\)\\)" line)
144 (string-append "m_shell = \"" (which "sh")
145 "\";\n " line)))
146 #t))
147 (delete 'configure) ; no configure script
148 ;; kakoune requires us to be in the src/ directory to build
149 (add-before 'build 'chdir
150 (lambda _ (chdir "src") #t)))))
151 (native-inputs
152 `(("asciidoc" ,asciidoc)
153 ("pkg-config" ,pkg-config)
154 ("ruby" ,ruby)))
155 (inputs
73eacca8 156 `(("ncurses" ,ncurses)))
fbe8ebec
TGR
157 (synopsis "Vim-inspired code editor")
158 (description
159 "Kakoune is a code editor heavily inspired by Vim, as such most of its
5613ea79
CZ
160commands are similar to Vi's ones, and it shares Vi's \"keystrokes as a text
161editing language\" model. Kakoune has a strong focus on interactivity, most
162commands provide immediate and incremental results, while still being
163competitive (as in keystroke count) with Vim.")
27405497 164 (home-page "https://kakoune.org/")
fbe8ebec 165 (license license:unlicense)))
f255a6db
EB
166
167(define-public joe
168 (package
169 (name "joe")
bc111d39 170 (version "4.6")
f255a6db
EB
171 (source
172 (origin
173 (method url-fetch)
174 (uri (string-append "https://sourceforge.net/projects/joe-editor/"
175 "files/JOE sources/joe-" version "/"
176 "joe-" version ".tar.gz"))
177 (sha256
178 (base32
bc111d39 179 "1pmr598xxxm9j9dl93kq4dv36zyw0q2dh6d7x07hf134y9hhlnj9"))))
f255a6db
EB
180 (build-system gnu-build-system)
181 (inputs `(("ncurses" ,ncurses)))
182 (home-page "http://joe-editor.sourceforge.net/")
183 (synopsis "Console screen editor")
184 (description
7904f18a
EB
185 "JOE is a powerful console screen editor with a \"mode-less\" user
186interface similar to many user-friendly editors. JOE has some of the key
187bindings and many of the powerful features of GNU Emacs.")
f255a6db 188 (license license:gpl3+)))
0bf11648
FS
189
190(define-public leafpad
191 (package
192 (name "leafpad")
193 (version "0.8.18.1")
194 (source (origin
195 (method url-fetch)
b7fd77ef 196 (uri (string-append "mirror://savannah/"
0bf11648
FS
197 "leafpad/leafpad-" version ".tar.gz"))
198 (sha256
199 (base32
200 "0b0az2wvqgvam7w0ns1j8xp2llslm1rx6h7zcsy06a7j0yp257cm"))))
4f038621 201 (build-system glib-or-gtk-build-system)
0bf11648
FS
202 (native-inputs
203 `(("intltool" ,intltool)
204 ("pkg-config" ,pkg-config)))
205 (inputs
206 `(("gtk+" ,gtk+-2)))
dde5831c 207 (home-page "http://tarot.freeshell.org/leafpad/")
0bf11648
FS
208 (synopsis "GTK+ based text editor")
209 (description "Leafpad is a GTK+ text editor that emphasizes simplicity. As
210development focuses on keeping weight down to a minimum, only the most essential
211features are implemented in the editor. Leafpad is simple to use, is easily
212compiled, requires few libraries, and starts up quickly. ")
213 (license license:gpl2+)))
3312fda0 214
215(define-public e3
216 (package
217 (name "e3")
218 (version "2.82")
219 (source (origin
220 (method url-fetch)
221 (uri (string-append "https://sites.google.com/site/e3editor/Home/"
222 "e3-" version ".tgz"))
223 (sha256
224 (base32
225 "0919kadkas020maqq37852isnzp053q2fnws2zh3mz81d1jiviak"))
226 (modules '((guix build utils)))
227
228 ;; Remove pre-built binaries.
6cbee49d
MW
229 (snippet '(begin
230 (delete-file-recursively "bin")
231 #t))))
3312fda0 232 (build-system gnu-build-system)
233 (arguments
234 `(#:tests? #f
235 #:make-flags (list (string-append "PREFIX="
236 (assoc-ref %outputs "out")))
237 #:phases (modify-phases %standard-phases
238 (delete 'configure))))
239 (native-inputs
240 `(("nasm" ,nasm)))
241 (home-page "https://sites.google.com/site/e3editor/")
242 (synopsis "Tiny text editor written in assembly")
243 (description
244 "e3 is a micro text editor with an executable code size between 3800 and
24535000 bytes. Except for ``syntax highlighting'', the e3 binary supports all
246of the basic functions one expects plus built in arithmetic calculations.
247UTF-8 coding of unicode characters is supported as well. e3 can use
248Wordstar-, EMACS-, Pico, Nedit or vi-like key bindings. e3 can be used on
24916, 32, and 64-bit CPUs.")
250 (supported-systems '("x86_64-linux" "i686-linux"))
251 (license license:gpl2+)))
bcd757fd
LC
252
253(define-public mg
254 (package
255 (name "mg")
77100119 256 (version "20180927")
bcd757fd 257 (source (origin
a4d8b386
TGR
258 (method git-fetch)
259 (uri (git-reference
260 (url "https://github.com/hboetes/mg")
261 (commit version)))
262 (file-name (git-file-name name version))
bcd757fd
LC
263 (sha256
264 (base32
77100119 265 "14vrm8lvwksf697sqks7xfd1xaqjlqjc9afjk33sksq5p27wr203"))
bcd757fd 266 (modules '((guix build utils)))
6cbee49d
MW
267 (snippet '(begin
268 (substitute* "GNUmakefile"
269 (("/usr/bin/") ""))
270 #t))))
bcd757fd
LC
271 (build-system gnu-build-system)
272 (native-inputs
273 `(("pkg-config" ,pkg-config)))
274 (inputs
275 `(("libbsd" ,libbsd)
276 ("ncurses" ,ncurses)))
277 (arguments
278 ;; No test suite available.
279 '(#:tests? #f
280 #:make-flags (list (string-append "prefix=" %output)
bcd757fd
LC
281 "CC=gcc")
282 #:phases (modify-phases %standard-phases
a4d8b386 283 (delete 'configure) ; no configure script
217ce570 284 (add-before 'build 'correct-location-of-difftool
285 (lambda _
286 (substitute* "buffer.c"
287 (("/usr/bin/diff")
288 (which "diff")))
289 #t))
bcd757fd
LC
290 (add-before 'install 'patch-tutorial-location
291 (lambda* (#:key outputs #:allow-other-keys)
292 (substitute* "mg.1"
293 (("/usr") (assoc-ref outputs "out")))
294 #t))
295 (add-after 'install 'install-tutorial
296 (lambda* (#:key outputs #:allow-other-keys)
297 (let* ((out (assoc-ref outputs "out"))
298 (doc (string-append out "/share/doc/mg")))
299 (install-file "tutorial" doc)
300 #t))))))
c3d82885 301 (home-page "https://homepage.boetes.org/software/mg/")
bcd757fd
LC
302 (synopsis "Microscopic GNU Emacs clone")
303 (description
16fcca64
TGR
304 "Mg (@command{mg}) is a GNU Emacs style editor, with which it is
305\"broadly\" compatible. This is a portable version of the mg maintained by the
306OpenBSD team.")
bcd757fd 307 (license license:public-domain)))
04918a00 308
3fad9a69
NG
309(define-public qemacs
310 (package
311 (name "qemacs")
312 (version "0.3.3")
313 (source
314 (origin
315 (method url-fetch)
316 (uri (string-append "https://bellard.org/qemacs/"
317 "qemacs-" version ".tar.gz"))
318 (sha256
319 (base32 "156z4wpj49i6j388yjird5qvrph7hz0grb4r44l4jf3q8imadyrg"))))
320 (build-system gnu-build-system)
321 (arguments
322 `(#:tests? #f ;no test
323 #:phases
324 (modify-phases %standard-phases
325 (add-before 'build 'build-qhtml
326 ;; Build fails without first creating qHTML library.
327 (lambda _ (invoke "make" "-C" "libqhtml")))
328 (add-before 'install 'fix-man-pages-directory
329 ;; Install in $out/share/man instead of $out/man.
330 (lambda _
331 (substitute* "Makefile"
332 (("/man/man1" all) (string-append "/share" all)))
333 #t))
334 (add-before 'install 'create-directories
335 ;; Ensure directories exist before installing files.
336 (lambda* (#:key outputs #:allow-other-keys)
337 (let ((out (assoc-ref outputs "out")))
338 (for-each (lambda (d) (mkdir-p (string-append out d)))
339 '("/bin" "/share/man/man1" "/share/qe"))
340 #t)))
341 (add-after 'install 'install-extra-documentation
342 ;; Install sample configuration file, Info, and HTML manual.
343 (lambda* (#:key outputs #:allow-other-keys)
344 (let* ((share (string-append (assoc-ref outputs "out") "/share"))
345 (doc (string-append share "/doc/" ,name "-" ,version))
346 (html (string-append share "/html"))
347 (info (string-append share "/info"))
348 (makeinfo (string-append (assoc-ref %build-inputs "texinfo")
349 "/bin/makeinfo")))
350 ;; First fix Texinfo documentation, create appropriate
351 ;; directories, then generate Info and HTML files there.
352 (substitute* "qe-doc.texi"
353 (("^M-([{}])" _ bracket) (string-append "M-@" bracket)))
354 (for-each (lambda (d) (mkdir-p d)) (list html info))
355 (invoke makeinfo "qe-doc.texi" "-o" info)
356 (invoke makeinfo "qe-doc.texi" "--html" "--no-split" "-o" html)
357 ;; Install sample configuration file.
358 (install-file "config.eg" doc)
359 #t))))))
360 (native-inputs
361 `(("texinfo" ,texinfo)))
362 (inputs
363 `(("libx11" ,libx11)
364 ("libxext" ,libxext)
365 ("libxv" ,libxv)))
366 (home-page "https://bellard.org/qemacs/")
367 (synopsis "Small but powerful text editor")
368 (description "QEmacs (for Quick Emacs) is a very small but
369powerful editor. It has features that even big editors lack:
370
371@itemize
372
373@item Full screen editor with an Emacs look and feel with all Emacs
374common features: multi-buffer, multi-window, command mode, universal
375argument, keyboard macros, config file with C-like syntax, minibuffer
376with completion and history.
377
378@item Can edit files of hundreds of Megabytes without being slow by
379using a highly optimized internal representation and by mmaping the
380file.
381
382@item Full Unicode support, including multi charset handling (8859-x,
383UTF8, SJIS, EUC-JP, ...) and bidirectional editing respecting the
384Unicode bidi algorithm. Arabic and Indic scripts handling (in
385progress).
386
387@item WYSIWYG HTML/XML/CSS2 mode graphical editing. Also supports
388Lynx like rendering on VT100 terminals.
389
390@item WYSIWYG DocBook mode based on XML/CSS2 renderer.
391
392@item C mode: coloring with immediate update. Emacs like auto-indent.
393
394@item Shell mode: colorized VT100 emulation so that your shell work
395exactly as you expect. Compile mode with next/prev error.
396
397@item Input methods for most languages, including Chinese (input
398methods come from the Yudit editor).
399
400@item Hexadecimal editing mode with insertion and block commands.
401Unicode hexa editing is also supported.
402
403@item Works on any VT100 terminals without termcap. UTF8 VT100
404support included with double width glyphs.
405
406@item X11 support. Support multiple proportional fonts at the same
407time (as XEmacs). X Input methods supported. Xft extension supported
408for anti aliased font display.
409
410@item Small! Full version (including HTML/XML/CSS2/DocBook rendering
411and all charsets): 200KB big. Basic version (without bidir/unicode
412scripts/input/X11/C/Shell/HTML/Dired): 49KB.
413@end itemize")
414 (license license:lgpl2.1+)))
415
04918a00
EB
416(define-public ghostwriter
417 (package
418 (name "ghostwriter")
89d3869b 419 (version "1.8.0")
04918a00
EB
420 (source (origin
421 (method git-fetch)
422 (uri (git-reference
423 (url "https://github.com/wereturtle/ghostwriter.git")
424 (commit (string-append "v" version))))
425 (file-name (git-file-name name version))
426 (sha256
427 (base32
89d3869b 428 "13yn82m1l2pq93wbl569a2lzpc3sn8a8g30hsgdch1l9xlmhwran"))))
04918a00
EB
429 (build-system gnu-build-system)
430 (native-inputs
431 `(("pkg-config" ,pkg-config)
58ab7f29 432 ("qttools" ,qttools))) ; for lrelease
04918a00
EB
433 (inputs
434 `(("hunspell" ,hunspell)
435 ("qtbase" ,qtbase)
89d3869b 436 ("qtdeclarative" ,qtdeclarative)
04918a00 437 ("qtmultimedia" ,qtmultimedia)
89d3869b 438 ("qtquickcontrols" ,qtquickcontrols)
04918a00 439 ("qtsvg" ,qtsvg)
89d3869b
EB
440 ("qtwebchannel" ,qtwebchannel)))
441 (propagated-inputs ; To get native-search-path
442 `(("qtwebengine" ,qtwebengine)))
04918a00
EB
443 (arguments
444 `(#:phases
445 (modify-phases %standard-phases
446 (replace 'configure
447 (lambda* (#:key outputs #:allow-other-keys)
448 (let ((out (assoc-ref outputs "out")))
449 (invoke "qmake" (string-append "PREFIX=" out)))))
450 (add-after 'configure 'create-translations
451 (lambda _
452 ;; `lrelease` will not overwrite, so delete existing .qm files
453 (for-each delete-file (find-files "translations" ".*\\.qm"))
454 (apply invoke "lrelease" (find-files "translations" ".*\\.ts"))))
455 ;; Ensure that icons are found at runtime.
456 (add-after 'install 'wrap-executable
457 (lambda* (#:key inputs outputs #:allow-other-keys)
458 (let ((out (assoc-ref outputs "out")))
459 (wrap-program (string-append out "/bin/ghostwriter")
460 `("QT_PLUGIN_PATH" ":" prefix
461 ,(map (lambda (label)
462 (string-append (assoc-ref inputs label)
463 "/lib/qt5/plugins/"))
464 '("qtsvg" "qtmultimedia"))))))))))
465 (home-page "https://wereturtle.github.io/ghostwriter/")
466 (synopsis "Write without distractions")
467 (description
468 "@code{ghostwriter} provides a relaxing, distraction-free writing
469environment with Markdown markup.")
58ab7f29 470 (license license:gpl3+))) ; icons/* under CC-BY-SA3
2238211a 471
1fffba66
NG
472(define-public manuskript
473 (package
474 (name "manuskript")
d5a08205 475 (version "0.11.0")
1fffba66
NG
476 (source
477 (origin
478 (method git-fetch)
479 (uri (git-reference
480 (url "https://github.com/olivierkes/manuskript.git")
481 (commit version)))
482 (file-name (git-file-name name version))
483 (sha256
d5a08205 484 (base32 "1l6l9k6k69yv8xqpll0zv9cwdqqg4zvxy90l6sx5nv2yywh5crla"))))
1fffba66
NG
485 (build-system python-build-system)
486 (arguments
487 `(#:tests? #f ;no test
488 #:phases
489 (modify-phases %standard-phases
490 (delete 'configure)
491 (delete 'build)
492 (replace 'install
493 (lambda* (#:key outputs #:allow-other-keys)
494 (let* ((out (assoc-ref outputs "out"))
495 (share (string-append out "/share/manuskript")))
496 ;; Install data.
497 (mkdir-p share)
498 (for-each
499 (lambda (d)
500 (let ((destination (string-append share "/" d)))
501 (mkdir-p destination)
502 (copy-recursively d destination)))
503 '("bin" "i18n" "icons" "libs" "manuskript" "resources"))
504 ;; Install documentation.
505 (let ((doc (string-append out
506 "/doc/manuskript-" ,version
507 "/sample-projects")))
508 (mkdir-p doc)
509 (copy-recursively "sample-projects" doc))
510 ;; Wrap executable in "$out/share/manuskript/bin" and
511 ;; link to it from "$out/bin".
512 (let ((bin (string-append out "/bin"))
513 (executable (string-append share "/bin/manuskript")))
514 (wrap-program executable
515 (list "PYTHONPATH" 'prefix (list (getenv "PYTHONPATH"))))
516 (mkdir-p bin)
517 (with-directory-excursion bin
518 (symlink (string-append share "/bin/manuskript")
519 "manuskript")))
520 ;; Install icons and create .desktop file.
521 (let ((apps (string-append out "/share/applications"))
522 (icons-dir (string-append out "/share/pixmaps")))
523 (install-file "icons/Manuskript/manuskript.svg" icons-dir)
524 (mkdir-p apps)
525 (with-output-to-file (string-append apps "/manuskript.desktop")
526 (lambda _
527 (format #t
528 "[Desktop Entry]~@
529 Name=Manuskript~@
530 MimeType=application/x-manuskript-book;~@
531 Exec=~a/bin/manuskript %f~@
532 Comment=Tool for writers~@
533 Comment[es]=Herramienta para escritores/as~@
534 Keywords=manuskript;office;write;edit;novel;text;msk~@
535 Terminal=false~@
536 Type=Application~@
537 Icon=manuskript~@
538 Categories=Office;WordProcessor;~%"
539 out))))
540 #t))))))
541 (inputs
542 `(("ghc-pandoc" ,ghc-pandoc)
543 ("python-lxml" ,python-lxml)
544 ("python-markdown" ,python-markdown)
545 ("python-pyqt" ,python-pyqt)
546 ("qtsvg" ,qtsvg)))
547 (home-page "http://www.theologeek.ch/manuskript/")
548 (synopsis "Tool for writers")
549 (description "Manuskript provides a rich environment to help
550writers create their first draft and then further refine and edit
551their masterpiece. With Manuskript you can:
552
553@itemize
554@item Grow your premise from one sentence, to a paragraph, to a full
555summary,
556@item Create characters,
557@item Conceive plots,
558@item Construct outlines (Outline mode and/or Index cards),
559@item Write with focus (Distraction free mode),
560@item Build worlds,
561@item Track items,
562@item Edit and re-organize chapters and scenes,
563@item View Story line,
564@item Compose with fiction or non-fiction templates and writing modes,
565@item Import and export document formats such as HTML, ePub,
566OpenDocument, DocX, and more.
567@end itemize
568
569Additionally Manuskript can help in many more ways with a spell
570checker, markdown highlighter, frequency analyzer, and automatic save
571in plain text file format.")
572 (license license:gpl3+)))
573
2238211a
EF
574(define-public editorconfig-core-c
575 (package
576 (name "editorconfig-core-c")
577 (version "0.12.3")
578 (source
579 (origin
580 (method git-fetch)
581 (uri (git-reference
582 (url "https://github.com/editorconfig/editorconfig-core-c.git")
583 (commit (string-append "v" version))))
584 (file-name (git-file-name name version))
585 (sha256
586 (base32
587 "0jkc69r4jwn4rih6h6cqvgljjc3ff49cxj8286mi515aczr48cm1"))))
588 (build-system cmake-build-system)
589 (arguments
590 '(#:phases
591 (modify-phases %standard-phases
592 (add-after 'unpack 'insert-tests
593 (lambda* (#:key inputs #:allow-other-keys)
594 (let ((tests (assoc-ref inputs "tests")))
595 (copy-recursively tests "tests"))
596 #t)))))
597 (native-inputs
598 `(("tests" ,(origin
599 (method git-fetch)
600 (uri (git-reference
601 (url "https://github.com/editorconfig/editorconfig-core-test")
602 (commit "6ea1d8ece62cac9cf72c79dce4879b046abe1fe7"))) ; matches version
603 (file-name (git-file-name "editorconfig-core-test" version))
604 (sha256
605 (base32
606 "1sf6910idnd4bgzbj8w8f9ldsbkaqa0lh6syymwy3hfqda63acj7"))))))
607 (inputs
608 `(("pcre2" ,pcre2)))
609 (home-page "https://editorconfig.org/")
610 (synopsis "EditorConfig core library written in C")
611 (description "EditorConfig makes it easy to maintain the correct coding
612style when switching between different text editors and between different
613projects. The EditorConfig project maintains a file format and plugins for
614various text editors which allow this file format to be read and used by those
615editors.")
616 (license license:bsd-2)))
75a137da
AE
617
618(define-public texmacs
619 (package
620 (name "texmacs")
ad9fd1ba 621 (version "1.99.11")
75a137da
AE
622 (source
623 (origin
624 (method url-fetch)
625 (uri (string-append "https://www.texmacs.org/Download/ftp/tmftp/"
626 "source/TeXmacs-" version "-src.tar.gz"))
627 (sha256
ad9fd1ba 628 (base32 "12bp0f34izzqimz49lfpgf4lyz3h45s9xbmk8v6zsawdjki76alg"))
75a137da
AE
629 (modules '((guix build utils)))
630 (snippet
631 '(begin
632 (delete-file-recursively "3rdparty")
633 #t))))
634 (build-system gnu-build-system)
635 (native-inputs
636 `(("pkg-config" ,pkg-config)))
637 (inputs
638 `(("freetype" ,freetype)
639 ("guile" ,guile-1.8)
640 ("perl" ,perl)
641 ("python" ,python-wrapper)
642 ("qt" ,qt-4)))
643 (arguments
ad9fd1ba 644 `(#:tests? #f ; no check target
75a137da
AE
645 #:phases
646 (modify-phases %standard-phases
647 (add-before 'configure 'gzip-flags
648 (lambda _
649 (substitute* "Makefile.in"
650 (("^GZIP = gzip -f") "GZIP = gzip -f -n")))))))
651 (synopsis "Editing platform with special features for scientists")
652 (description
653 "GNU TeXmacs is a text editing platform which is specialized for
654scientists. It is ideal for editing structured documents with different
655types of content. It has robust support for mathematical formulas and plots.
656 It can also act as an interface to external mathematical programs such as R
657and Octave. TeXmacs is completely extensible via Guile.")
658 (license license:gpl3+)
659 (home-page "https://www.texmacs.org/tmweb/home/welcome.en.html")))
c55cd98c
NG
660
661(define-public scintilla
662 (package
663 (name "scintilla")
3e6cb583
NG
664 (version "4.3.0")
665 (source
666 (origin
667 (method url-fetch)
668 (uri (let ((v (apply string-append (string-split version #\.))))
669 (string-append "https://www.scintilla.org/scintilla" v ".tgz")))
670 (sha256
671 (base32 "0c52b2wg0y55kv3w7rnzp0nbd1yn2kksy0w8bjdp3gkl0v28wwx5"))))
c55cd98c
NG
672 (build-system gnu-build-system)
673 (arguments
674 `(#:make-flags (list "GTK3=1" "CC=gcc" "-Cgtk")
675 #:tests? #f ;require un-packaged Pyside
676 #:phases
677 (modify-phases %standard-phases
678 (delete 'configure) ;no configure script
679 (add-after 'unpack 'build-shared-library
680 (lambda _
681 (substitute* "gtk/makefile"
682 (("scintilla\\.a") "libscintilla.so")
683 (("\\$\\(AR\\) \\$\\(ARFLAGS\\) \\$@ \\$\\^")
684 "$(CC) -shared $^ -o $@")
685 (("\\$\\(RANLIB\\) \\$@") ""))
686 #t))
c55cd98c
NG
687 (replace 'install
688 (lambda* (#:key outputs #:allow-other-keys)
689 (let* ((out (assoc-ref outputs "out"))
690 (lib (string-append out "/lib"))
691 (include (string-append out "/include")))
692 (install-file "bin/libscintilla.so" lib)
693 (for-each (lambda (f) (install-file f include))
694 (find-files "include/" "."))
695 #t))))))
696 (native-inputs
dee632a8
NG
697 `(("pkg-config" ,pkg-config)
698 ("python" ,python-wrapper)))
c55cd98c
NG
699 (inputs
700 `(("gtk+" ,gtk+)))
701 (home-page "https://www.scintilla.org/")
702 (synopsis "Code editor for GTK+")
703 (description "Scintilla is a source code editing component for
704GTK+. It has the usual features found in text editing components, as
705well as some that are especially useful for editing and debugging
706source code; these include support for syntax styling, error
707indicators, code completion and call tips. Styling choices are more
708open than with many editors: Scintilla lets you use proportional
709fonts, bold and italics, multiple foreground and background colours,
710and multiple fonts.")
711 (license license:hpnd)))
2363ed01
NG
712
713(define-public geany
714 (package
715 (name "geany")
40e513fe 716 (version "1.36")
2363ed01
NG
717 (source (origin
718 (method url-fetch)
719 (uri (string-append "https://download.geany.org/"
720 "geany-" version ".tar.bz2"))
721 (sha256
722 (base32
40e513fe 723 "0gnm17cr4rf3pmkf0axz4a0fxwnvp55ji0q0lzy88yqbshyxv14i"))
2363ed01
NG
724 (modules '((guix build utils)))
725 (snippet '(begin
726 (delete-file-recursively "scintilla")
727 #t))))
728 (build-system gnu-build-system)
729 (native-inputs
730 `(("autoconf" ,autoconf)
731 ("automake" ,automake)
732 ("doxygen" ,doxygen)
733 ("glib" ,glib "bin")
734 ("intltool" ,intltool)
735 ("libtool" ,libtool)
736 ("pkg-config" ,pkg-config)
737 ("python-docutils" ,python-docutils))) ;for rst2html
738 (inputs
739 `(("gtk+" ,gtk+)
740 ("scintilla" ,scintilla)))
741 (arguments
742 `(#:phases
743 (modify-phases %standard-phases
744 (add-after 'unpack 'use-scintilla-shared-library
745 (lambda* (#:key inputs #:allow-other-keys)
746 (substitute* "configure.ac"
747 (("scintilla/Makefile") "")
748 (("scintilla/include/Makefile") ""))
749 (substitute* "Makefile.am"
750 (("scintilla ") ""))
751 (substitute* "src/Makefile.am"
752 (("\\$\\(top_builddir\\)/scintilla/libscintilla.la") "")
753 (("geany_LDFLAGS =" all) (string-append all " -lscintilla")))
754 (substitute* "doc/Makefile.am"
755 (("\\$\\(INSTALL_DATA\\) \\$\\(top_srcdir\\)/scintilla/License.txt \\$\\(DOCDIR\\)/ScintillaLicense.txt") ""))
40e513fe
NG
756 (substitute* "tests/Makefile.am"
757 (("AM_LDFLAGS =" all) (string-append all " -lscintilla")))
2363ed01
NG
758 (for-each delete-file (list "autogen.sh" "configure" "Makefile.in"))
759 #t)))))
760 (home-page "https://www.geany.org")
761 (synopsis "Fast and lightweight IDE")
762 (description "Geany is a small and fast Integrated Development
763Environment (IDE) that only has a few dependencies on other packages and is as
764independent as possible from special desktop environments like KDE or GNOME.
765
766The basic features of Geany are:
767@itemize
768@item syntax highlighting
769@item code completion
770@item auto completion of often constructed constructs like if, for and while
771@item auto completion of XML and HTML tags
772@item call tips
773@item folding
774@item many supported filetypes like C, Java, PHP, HTML, Python, Perl, Pascal
775@item symbol lists
776@item embedded terminal emulation
777@item extensibility through plugins
778@end itemize")
779 (license license:gpl2+)))
2207d522
NG
780
781(define-public fe
782 (package
783 (name "fe")
784 ;; Stable release is 1.8. However, this development version
785 ;; introduces support for UTF-8.
786 (version "2.0")
787 (source (origin
788 (method url-fetch)
789 (uri (string-append "http://www.moria.de/~michael/fe/"
790 "fe-" version ".tar.gz"))
791 (sha256
792 (base32
793 "1hwws7si1752z6hp61zxznvgsb6846lp8zl1hn5ddhsbafwalwb9"))))
794 (build-system gnu-build-system)
795 (arguments
796 `(#:tests? #f ;no test
797 ;; Sendmail is only used to send a crash log. Disable the
798 ;; feature since it is (1) undocumented (2) not very useful.
799 #:configure-flags (list "--disable-sendmail")
800 #:phases
801 (modify-phases %standard-phases
802 (add-after 'install 'install-doc
803 (lambda* (#:key outputs #:allow-other-keys)
804 (let* ((out (assoc-ref outputs "out"))
805 (doc (string-append out "/share/doc/" ,name "-" ,version)))
806 (for-each (lambda (f) (install-file f doc))
807 '("fe.doc" "fe.html" "fe.ps" "feref.ps" "README"))
808 #t))))))
809 (native-inputs
810 `(("gettext" ,gettext-minimal)))
811 (inputs
812 `(("ncurses" ,ncurses)))
813 (home-page "http://www.moria.de/~michael/fe/")
814 (synopsis "Small folding editor")
815 (description "Fe is a small folding editor. It allows to fold
816arbitrary text regions; it is not bound to syntactic units.
817
818Fe has no configuration or extension language and requires no setup.
99ce2055 819Its user interface is emacs-like and it has menus for the very most
2207d522
NG
820important functions to help beginners. Further there is a reference
821card. It offers:
822
823@itemize
824@item Regions and Emacs-like kill ring
825@item Incremental search
826@item Keyboard macros
827@item Editing binary files
828@item Multiple windows and views
829@item Compose function for Latin 1 characters
830@end itemize")
831 (license license:gpl2+)))
a78364e9
DM
832
833(define-public ne
834 (package
835 (name "ne")
836 (version "3.2.1")
837 (source (origin
838 (method git-fetch)
839 (uri (git-reference
840 (url "https://github.com/vigna/ne.git")
841 (commit version)))
842 (file-name (git-file-name name version))
843 (sha256
844 (base32
845 "0h6d08cnwrk96ss83i9bragwwanph6x54sm3ak1z81146dsqsiif"))))
846 (build-system gnu-build-system)
847 (native-inputs
848 `(("perl" ,perl)
849 ("texinfo" ,texinfo)))
850 (inputs
851 `(("ncurses" ,ncurses)))
852 (arguments
853 `(#:tests? #f
854 #:make-flags
855 (list "CC=gcc"
856 (string-append "PREFIX=" (assoc-ref %outputs "out"))
857 (string-append "LDFLAGS=-L" (assoc-ref %build-inputs "ncurses")
858 "/lib"))
859 #:phases
860 (modify-phases %standard-phases
861 (replace 'configure
862 (lambda _
863 (substitute* "src/makefile"
864 (("-lcurses") "-lncurses"))
865 #t)))))
866 (home-page "http://ne.di.unimi.it/")
867 (synopsis "Text editor with menu bar")
868 (description "This package provides a modeless text editor with menu bar.
869It supports syntax highlighting, regular expressions, configurable menus,
870keybindings, autocomplete and unlimited undo. It can pipe a marked block
871of text through any command line filter. It can also open very large binary
872files. It was originally developed on the Amiga 3000T.")
873 (license license:gpl3+)))