guix-commits
[Top][All Lists]
Advanced

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

01/02: gnu: Add emacs-inflections.


From: guix-commits
Subject: 01/02: gnu: Add emacs-inflections.
Date: Thu, 27 Oct 2022 01:29:05 -0400 (EDT)

abcdw pushed a commit to branch master
in repository guix.

commit 39dfa2947f765c32148e7ac8cba4e6199a815b5f
Author: Andrew Tropin <andrew@trop.in>
AuthorDate: Thu Oct 27 09:18:53 2022 +0400

    gnu: Add emacs-inflections.
    
    * gnu/packages/emacs-xyz.scm (emacs-inflections): New variable.
---
 gnu/packages/emacs-xyz.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 35b3bad33e..aefa5108fd 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -4594,6 +4594,27 @@ which is restored where possible when the file is loaded 
again.")
 strings.")
     (license license:gpl3+)))
 
+(define-public emacs-inflections
+  (package
+    (name "emacs-inflections")
+    (version "2.6")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/eschulte/jump.el";)
+             (commit version)))
+       (file-name (git-file-name name version))
+       (snippet #~(begin (delete-file "jump.el")))
+       (sha256
+        (base32 "03fh7i6blnbc0zbmp83fk095hr3q4fdvrvfxad74zghcbc2nk7b7"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/eschulte/jump.el";)
+    (synopsis "Convert english words between singular and plural")
+    (description "This package provides an Emacs library for converting
+english words between singular and plural.")
+    (license license:gpl3+)))
+
 (define-public emacs-blight
   (let ((commit "6bf9c6192d2bf979eebbfae1963401ef3ff4ef5d")
         (revision "0"))



reply via email to

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