diff options
author | Arun Isaac <arunisaac@systemreboot.net> | 2019-07-12 02:01:01 +0530 |
---|---|---|
committer | Arun Isaac <arunisaac@systemreboot.net> | 2019-07-14 20:14:35 +0530 |
commit | 3c6d7fa84274ab357b5e43dd412486b35872ab36 (patch) | |
tree | a72f56f94a3e8a1b38830e464422c256767a3640 /gnu | |
parent | 39a20acc06b6dff5a4d0e0b143332fcdf407b8c9 (diff) | |
download | patches-3c6d7fa84274ab357b5e43dd412486b35872ab36.tar patches-3c6d7fa84274ab357b5e43dd412486b35872ab36.tar.gz |
gnu: Add emacs-elpher.
* gnu/packages/emacs-xyz.scm (emacs-elpher): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 4e8c2c9ac6..47edbaeeb6 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -16530,3 +16530,37 @@ it forcibly @item Dedicated window for debugging program. @end enumerate") (license license:gpl3+)))) + +(define-public emacs-elpher + (package + (name "emacs-elpher") + (version "1.4.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tgvaughan/elpher") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "07xansmhn4l0b9ghzf56vyx8cqg0q01aq3pz5ikx2i19v5f0rc66")))) + (build-system emacs-build-system) + (native-inputs + `(("texinfo" ,texinfo))) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-before 'install 'build-doc + (lambda _ + (invoke "makeinfo" "elpher.texi")))))) + (home-page "https://github.com/tgvaughan/elpher") + (synopsis "Gopher client for Emacs") + (description "Elpher is a full-featured gopher client for Emacs. Its +features include intuitive keyboard and mouse-driven browsing, out-of-the-box +compatibility with evil-mode, clickable web and gopher links in plain text, +caching of visited sites, pleasant and configurable visualization of Gopher +directories, direct visualisation of image files, jumping directly to links by +name (with autocompletion), a simple bookmark management system and +connections using TLS encryption.") + (license license:gpl3+))) |