guix-commits
[Top][All Lists]
Advanced

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

03/06: gnu: Add emacs-ac-ispell.


From: guix-commits
Subject: 03/06: gnu: Add emacs-ac-ispell.
Date: Wed, 8 Mar 2023 10:27:29 -0500 (EST)

ngz pushed a commit to branch master
in repository guix.

commit ca0a4a9dc27119538ea9b05fa886b0f728549796
Author: Rostislav Svoboda <rostislav.svoboda@gmail.com>
AuthorDate: Fri Feb 24 15:18:14 2023 +0100

    gnu: Add emacs-ac-ispell.
    
    * gnu/packages/emacs-xyz.scm (emacs-ac-ispell): 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 b3edcc21ae..0665fc3c39 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -264,6 +264,29 @@
 ;;; Emacs hacking.
 ;;;
 
+(define-public emacs-ac-ispell
+  (let ((commit "22bace7387e9012002a6a444922f75f9913077b0")
+        (revision "1"))
+    (package
+      (name "emacs-ac-ispell")
+      (version (git-version "0.07" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/emacsorphanage/ac-ispell";)
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "1cq73bdv3lkn8v3nx6aznygqaac9s5i7pvirl8wz9ib31hsgwpbk"))))
+      (build-system emacs-build-system)
+      (propagated-inputs (list emacs-auto-complete))
+      (home-page "https://github.com/emacsorphanage/ac-ispell";)
+      (synopsis "Ispell and Aspell completion source for Auto Complete")
+      (description
+       "AC Ispell is an Ispell and Aspell completion source for Auto 
Complete.")
+      (license license:gpl3+))))
+
 (define-public emacs-cfrs
   (package
     (name "emacs-cfrs")



reply via email to

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