From 023fe398b951789fb5b9bb64b9565813afb50630 Mon Sep 17 00:00:00 2001 From: Liliana Marie Prikler Date: Sat, 28 Dec 2024 21:34:59 +0100 Subject: [PATCH] gnu: Add libspelling. * gnu/packages/gnome.scm (libspelling): New variable. Reviewed-by: Maxim Cournoyer --- gnu/packages/gnome.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 87cad9f8ec780fc388599c12f0619db04ba07434..98faf8025414ee0f589ebdc54430eb54970dd1a7 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -13670,6 +13670,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")