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