gnu: enchant: Update to 2.6.8.

* gnu/packages/enchant.scm (enchant): Update to 2.6.8.
[native-inputs]: Add GROFF.

Change-Id: I8c7d7e2b9124a55401c6623fd76eacc0878ad6e6
Reviewed-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
This commit is contained in:
Nicolas Goaziou 2024-03-27 10:25:03 +01:00 committed by Ludovic Courtès
parent 9a2dca2e97
commit bd0b6a1b68
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -25,6 +25,7 @@ (define-module (gnu packages enchant)
#:use-module (gnu packages boost)
#:use-module (gnu packages check)
#:use-module (gnu packages glib)
#:use-module (gnu packages groff)
#:use-module (gnu packages hunspell)
#:use-module (gnu packages icu4c)
#:use-module (gnu packages man)
@ -71,7 +72,7 @@ (define-public nuspell
(define-public enchant
(package
(name "enchant")
(version "2.2.15")
(version "2.6.8")
(source (origin
(method url-fetch)
(uri (string-append "https://github.com/AbiWord/enchant/releases"
@ -79,7 +80,7 @@ (define-public enchant
version ".tar.gz"))
(sha256
(base32
"00vcykbb7lxh51prvmsb62a06q18a6rlk9ba5a7g45c1awaj43rv"))))
"1bn7z8155czgzlnq2n4c915cl1vd3v95h1bghic3szy7c8q94rgm"))))
(build-system gnu-build-system)
(arguments
'(#:configure-flags '("--disable-static"
@ -92,6 +93,7 @@ (define-public enchant
(list glib))
(native-inputs
`(("glib:bin" ,glib "bin")
("groff" ,groff)
("pkg-config" ,pkg-config)
("unittest-cpp" ,unittest-cpp)))
(synopsis "Multi-backend spell-checking library wrapper")