mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-29 07:42:23 -05:00
gnu: Add jed.
* gnu/packages/text-editors.scm (jed): package for jed 0.99-19 Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
25b01ed77f
commit
bd56093d84
1 changed files with 37 additions and 0 deletions
|
@ -89,6 +89,7 @@ (define-module (gnu packages text-editors)
|
||||||
#:use-module (gnu packages regex)
|
#:use-module (gnu packages regex)
|
||||||
#:use-module (gnu packages ruby)
|
#:use-module (gnu packages ruby)
|
||||||
#:use-module (gnu packages sdl)
|
#:use-module (gnu packages sdl)
|
||||||
|
#:use-module (gnu packages slang)
|
||||||
#:use-module (gnu packages sqlite)
|
#:use-module (gnu packages sqlite)
|
||||||
#:use-module (gnu packages terminals)
|
#:use-module (gnu packages terminals)
|
||||||
#:use-module (gnu packages texinfo)
|
#:use-module (gnu packages texinfo)
|
||||||
|
@ -1391,3 +1392,39 @@ (define-public lite-xl
|
||||||
The aim of Lite XL compared to lite is to be more user-friendly, improve the
|
The aim of Lite XL compared to lite is to be more user-friendly, improve the
|
||||||
quality of font rendering, and reduce CPU usage.")
|
quality of font rendering, and reduce CPU usage.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public jed
|
||||||
|
(package
|
||||||
|
(name "jed")
|
||||||
|
(version "0.99-19")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "https://www.jedsoft.org/releases/jed/jed-"
|
||||||
|
version ".tar.bz2"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0qspdc6wss43wh1a8fddvf62xyhld5p7hl75grv4d95h5z73k8wp"))
|
||||||
|
(modules '((guix build utils)))
|
||||||
|
(snippet #~(begin
|
||||||
|
(substitute* "src/Makefile.in"
|
||||||
|
(("/bin/cp")
|
||||||
|
"cp"))
|
||||||
|
(substitute* "configure"
|
||||||
|
(("TERMCAP=-ltermcap")
|
||||||
|
"TERMCAP="))))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(arguments
|
||||||
|
(list #:configure-flags
|
||||||
|
#~(list (string-append "--with-slang="
|
||||||
|
#$(this-package-input "slang")))
|
||||||
|
;; jed provides no tests
|
||||||
|
#:tests? #f))
|
||||||
|
(inputs (list slang))
|
||||||
|
(home-page "https://www.jedsoft.org/jed/")
|
||||||
|
(synopsis "Programmer's editor using S-Lang scripting for configuration")
|
||||||
|
(description
|
||||||
|
"Jed is a powerful programmer's editor using the S-Lang scripting language
|
||||||
|
for configuration and extensibility. It provides emulation modes for the
|
||||||
|
key bindings of many editors (including Emacs and WordStar), and has syntax
|
||||||
|
highlighting for dozens of languages. Jed is very small and fast.")
|
||||||
|
(license license:gpl2+)))
|
||||||
|
|
Loading…
Reference in a new issue