From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55246) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1edquN-0008NH-EO for guix-patches@gnu.org; Tue, 23 Jan 2018 00:14:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1edquJ-0003CI-Dk for guix-patches@gnu.org; Tue, 23 Jan 2018 00:14:07 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:59230) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1edquJ-0003Bq-65 for guix-patches@gnu.org; Tue, 23 Jan 2018 00:14:03 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1edquH-00076u-ML for guix-patches@gnu.org; Tue, 23 Jan 2018 00:14:02 -0500 Subject: [bug#30194] [PATCH 2/6] gnu: Add emacs-emojify. Resent-Message-ID: From: Ricardo Wurmus Date: Sun, 21 Jan 2018 18:25:35 +0100 Message-Id: <20180121172539.19408-2-rekado@elephly.net> In-Reply-To: <20180121172539.19408-1-rekado@elephly.net> References: <20180121172539.19408-1-rekado@elephly.net> 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: 30194@debbugs.gnu.org Cc: Ricardo Wurmus * gnu/packages/emacs.scm (emacs-emojify): New variable. --- gnu/packages/emacs.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index cbe1ac6f7..f1ff29cd6 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -6486,6 +6486,31 @@ prefixed with @code{seq-}. All provided functions work on lists, strings and vectors.") (license license:gpl3+))) +(define-public emacs-emojify + (package + (name "emacs-emojify") + (version "0.4") + (source + (origin + (method url-fetch) + (uri (string-append "https://github.com/iqbalansari/emacs-emojify/" + "releases/download/v" version "/emojify-" + version ".tar")) + (sha256 + (base32 + "0k84v2d2bkiwcky9fi1yyprgkj46g7wh6pyl9gzmcd7sqv051d5n")))) + (build-system emacs-build-system) + (propagated-inputs + `(("emacs-seq" ,emacs-seq) + ("emacs-ht" ,emacs-ht))) + (home-page "https://github.com/iqbalansari/emacs-emojify") + (synopsis "Display emojis in Emacs") + (description "This package displays emojis in Emacs similar to how Github, +Slack, and other websites do. It can display plain ASCII like @code{:)} as +well as Github-style emojis like @code{:smile:}. It provides a minor mode +@code{emojify-mode} to enable the display of emojis in a buffer.") + (license license:gpl3+))) + (define-public emacs-bash-completion (package (name "emacs-bash-completion") -- 2.15.0