guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/01: gnu: Add JOE.


From: Eric Bavier
Subject: 01/01: gnu: Add JOE.
Date: Wed, 1 Feb 2017 02:30:37 +0000 (UTC)

bavier pushed a commit to branch master
in repository guix.

commit f255a6db17f7bb446e9538cf466ef311b63a8fbf
Author: Eric Bavier <address@hidden>
Date:   Tue Jan 31 20:26:20 2017 -0600

    gnu: Add JOE.
    
    * gnu/packages/text-editors.scm (joe): New variable.
---
 gnu/packages/text-editors.scm |   26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/text-editors.scm b/gnu/packages/text-editors.scm
index 5b20d1d..d801281 100644
--- a/gnu/packages/text-editors.scm
+++ b/gnu/packages/text-editors.scm
@@ -1,6 +1,7 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2016 José Miguel Sánchez García <address@hidden>
 ;;; Copyright © 2016 Carlo Zancanaro <address@hidden>
+;;; Copyright © 2016 Eric Bavier <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -151,3 +152,28 @@ commands provide immediate and incremental results, while 
still being
 competitive (as in keystroke count) with Vim.")
       (home-page "http://kakoune.org/";)
       (license license:unlicense))))
+
+(define-public joe
+  (package
+    (name "joe")
+    (version "4.4")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://sourceforge.net/projects/joe-editor/";
+                           "files/JOE sources/joe-" version "/"
+                           "joe-" version ".tar.gz"))
+       (sha256
+        (base32
+         "0y898r1xlrv75m00y598rvwwsricabplyh80wawsqafapcl4hw55"))))
+    (build-system gnu-build-system)
+    (inputs `(("ncurses" ,ncurses)))
+    (home-page "http://joe-editor.sourceforge.net/";)
+    (synopsis "Console screen editor")
+    (description
+     "JOE is a blending of MicroPro's microcomputer word processor WordStar
+and Richard Stallman's LISP-based text editor GNU Emacs.  Most of the basic
+editing keys and the overall feel of the editor are the same as in WordStar.
+JOE also has some of the key bindings and many of the powerful features of GNU
+Emacs.")
+    (license license:gpl3+)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]