lilyp pushed a commit to branch gnome-team
in repository guix.

commit b4632cfef9f8f60e0ac5bb3377c20ed7861d8150
Author: Liliana Marie Prikler <[email protected]>
AuthorDate: Sat Dec 28 21:34:59 2024 +0100

    gnu: Add libspelling.
    
    * gnu/packages/gnome.scm (libspelling): New variable.
    
    Reviewed-by: Maxim Cournoyer <[email protected]>
---
 gnu/packages/gnome.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 800685a4a0..d5e6ab1720 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -13666,6 +13666,33 @@ libraries.  Applications do not need to be 
recompiled--or even restarted.")
                             (("gtk-update-icon-cache") "true")
                             (("update-desktop-database") "true"))))))))))
 
+(define-public libspelling
+  (package
+    (name "libspelling")
+    (version "0.4.5")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://gitlab.gnome.org/GNOME/libspelling";)
+                    (commit version)))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32 
"030s821sb9rsr1ysl79x7id1bsin9idy8z7p85qr9cvw1w3f2s7r"))))
+    (build-system meson-build-system)
+    (inputs (list enchant gtk gtksourceview sysprof))
+    (native-inputs
+     (list gi-docgen
+           gobject-introspection
+           pkg-config
+           vala
+           ;; For testing.
+           aspell aspell-dict-en))
+    (home-page "https://gitlab.gnome.org/GNOME/libspelling/";)
+    (synopsis "Spell-checking library for GTK 4")
+    (description "This package provides a spell-checker for
+GtkTextView widgets.")
+    (license license:lgpl2.1+)))
+
 (define-public gnome-builder
   (package
     (name "gnome-builder")

Reply via email to