guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: Add emacs-company-emoji.


From: guix-commits
Subject: branch master updated: gnu: Add emacs-company-emoji.
Date: Wed, 26 Feb 2020 09:46:52 -0500

This is an automated email from the git hooks/post-receive script.

ngz pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new b68f5a6  gnu: Add emacs-company-emoji.
b68f5a6 is described below

commit b68f5a68f895307ee184da725882d6f243ccded6
Author: Evan Straw <address@hidden>
AuthorDate: Sat Feb 22 19:48:54 2020 -0800

    gnu: Add emacs-company-emoji.
    
    [[PGP Signed Part:No public key for F530C3B4A2A9F06D created at 
2020-02-23T04:48:54+0100 using RSA]]
    From 6c23c5966a3c7ed01c784874e410d5fe3009bfc5 Mon Sep 17 00:00:00 2001
    From: Evan Straw <address@hidden>
    Date: Sat, 22 Feb 2020 19:47:19 -0800
    Subject: [PATCH] gnu: Add emacs-company-emoji.
    
    * gnu/packages/emacs-xyz.scm (emacs-company-emoji): New variable.
---
 gnu/packages/emacs-xyz.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 0932c87..1025529 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -59,6 +59,7 @@
 ;;; Copyright © 2019 David Wilson <address@hidden>
 ;;; Copyright © 2020 Paul Garlick <address@hidden>
 ;;; Copyright © 2020 Robert Smith <address@hidden>
+;;; Copyright © 2020 Evan Straw <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -21536,3 +21537,26 @@ Values are stored in a directory in 
@code{user-emacs-directory}, using
 one file per value.  This makes it easy to delete or remove unused
 variables.")
     (license license:gpl3+)))
+
+(define-public emacs-company-emoji
+  (package
+    (name "emacs-company-emoji")
+    (version "2.5.2")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/dunn/company-emoji/";)
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0r9zcbm3nb3zw5cwrkl098v5b49jbga5404bj7j55g6k4rwkjar2"))))
+    (build-system emacs-build-system)
+    (propagated-inputs
+     `(("emacs-company" ,emacs-company)))
+    (home-page "https://github.com/dunn/company-emoji/";)
+    (synopsis "Company completion back-end for emoji")
+    (description
+     "This library is a Company back-end providing auto-completion for
+emoji.")
+    (license license:gpl3+)))



reply via email to

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