From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:35540) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hlfnP-0000z0-Nc for guix-patches@gnu.org; Thu, 11 Jul 2019 16:36:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hlfnO-00047C-Ay for guix-patches@gnu.org; Thu, 11 Jul 2019 16:36:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:58207) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hlfnO-000476-7m for guix-patches@gnu.org; Thu, 11 Jul 2019 16:36:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hlfnO-0007Ex-2n for guix-patches@gnu.org; Thu, 11 Jul 2019 16:36:02 -0400 Subject: [bug#36606] [PATCH] gnu: Add emacs-elpher. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:35330) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hlfml-0000rt-OQ for guix-patches@gnu.org; Thu, 11 Jul 2019 16:35:24 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hlfmj-0003cg-Nc for guix-patches@gnu.org; Thu, 11 Jul 2019 16:35:23 -0400 Received: from mugam.systemreboot.net ([139.59.75.54]:59638) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hlfmf-0003OR-VB for guix-patches@gnu.org; Thu, 11 Jul 2019 16:35:20 -0400 From: Arun Isaac Date: Fri, 12 Jul 2019 02:04:59 +0530 Message-Id: <20190711203500.23812-1-arunisaac@systemreboot.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 36606@debbugs.gnu.org * gnu/packages/emacs-xyz.scm (emacs-elpher): New variable. --- gnu/packages/emacs-xyz.scm | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 2d9f271cc8..78bd630ecf 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -16481,3 +16481,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+))) -- 2.22.0