guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: Add emacs-ryo-modal.


From: guix-commits
Subject: branch master updated: gnu: Add emacs-ryo-modal.
Date: Wed, 29 Apr 2020 10:30:06 -0400

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 6d25f29  gnu: Add emacs-ryo-modal.
6d25f29 is described below

commit 6d25f29143b8ebe7f627a32418a369a1c5f8625f
Author: pinoaffe <address@hidden>
AuthorDate: Wed Apr 29 16:29:53 2020 +0200

    gnu: Add emacs-ryo-modal.
    
    * gnu/packages/emacs-xyz.scm (emacs-ryo-modal): New variable.
    
    Signed-off-by: Nicolas Goaziou <address@hidden>
---
 gnu/packages/emacs-xyz.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 650a573..56cd298 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -68,6 +68,7 @@
 ;;; Copyright © 2020 John Soo <address@hidden>
 ;;; Copyright © 2020 Jérémy Korwin-Zmijowski <address@hidden>
 ;;; Copyright © 2020 Alberto Eleuterio Flores Guerrero <address@hidden>
+;;; Copyright © 2020 pinoaffe <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -7312,6 +7313,30 @@ of its name.")
 names, e.g. #0000ff is displayed in white with a blue background.")
     (license license:gpl3+)))
 
+(define-public emacs-ryo-modal
+  ;; Package has no release.  Version is extracted from "Version:" keyword in
+  ;; main file.
+  (let ((commit "3a54312eea7023a86ca3f8eb3c03c872554bff2f")
+        (revision "0"))
+    (package
+      (name "emacs-ryo-modal")
+      (version (git-version "0.4" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/Kungsgeten/ryo-modal.git";)
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "1cyvp3bi6yhckbdnq98xvghmhdzghya5y9wd7hxjawibs75rza95"))))
+      (build-system emacs-build-system)
+      (home-page "http://github.com/Kungsgeten/ryo-modal";)
+      (synopsis "Emacs minor mode for defining modal editing environments")
+      (description "RYO modal provides a convenient way of defining modal
+keybindings in Emacs, and does not come with any predefined bindings.")
+      (license license:expat))))
+
 (define-public emacs-visual-fill-column
   (package
     (name "emacs-visual-fill-column")



reply via email to

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