guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: Add emacs-popup-kill-ring.


From: guix-commits
Subject: branch master updated: gnu: Add emacs-popup-kill-ring.
Date: Sun, 06 Feb 2022 16:53:56 -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 5c6ebc0060 gnu: Add emacs-popup-kill-ring.
5c6ebc0060 is described below

commit 5c6ebc0060e19b78ca2cca3b4cfc552511205c8a
Author: Jai Vetrivelan <jaivetrivelan@gmail.com>
AuthorDate: Wed Feb 2 22:01:08 2022 +0530

    gnu: Add emacs-popup-kill-ring.
    
    * gnu/packages/emacs-xyz.scm (emacs-popup-kill-ring): New variable.
    
    Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
---
 gnu/packages/emacs-xyz.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index c9c91cec32..a35bfef98a 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -7096,6 +7096,29 @@ This provides a basic API and common UI widgets such as 
popup tooltips
 and popup menus.")
     (license license:gpl3+)))
 
+(define-public emacs-popup-kill-ring
+  (let ((commit "a45c9cf79c4e1207fdbdd662e161154ef224ad61")
+        (revision "0"))
+    (package
+      (name "emacs-popup-kill-ring")
+      (version (git-version "0.2.8" revision commit))
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                      (url "https://github.com/waymondo/popup-kill-ring";)
+                      (commit commit)))
+                (file-name (git-file-name name version))
+                (sha256
+                 (base32
+                  "0bpnsc4agy6mcnc79d9a6gi79jiiqrhf3a55pw0p4z16m86vwyqr"))))
+      (build-system emacs-build-system)
+      (propagated-inputs (list emacs-pos-tip emacs-popup))
+      (home-page "https://github.com/waymondo/popup-kill-ring";)
+      (synopsis "Interactively insert item from kill-ring")
+      (description "This Emacs packages manages your Emacs kill-ring in an
+autocomplete style popup menu.")
+      (license license:gpl3+))))
+
 (define-public emacs-python-black
   (package
     (name "emacs-python-black")



reply via email to

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