diff options
author | Ale Abdo <[email protected]> | 2025-01-02 00:46:32 +0100 |
---|---|---|
committer | Ludovic Courtès <[email protected]> | 2025-01-27 14:42:41 +0100 |
commit | 9187970747ff26dbda4d27cdfb692f2ee54262c7 (patch) | |
tree | 3792f9df4cb48f31f161cf02082c06ec10ebdec7 | |
parent | f3645fdda79b5e8c87b359ce9091931d3f89b93f (diff) |
gnu: Add hunspell-dict-pt-pt.
* gnu/packages/hunspell.scm (hunspell-dict-pt-pt): New variable.
Change-Id: I68e4bc15af66648d06acd4ca822a9be8484220fe
Signed-off-by: Ludovic Courtès <[email protected]>
-rw-r--r-- | gnu/packages/hunspell.scm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gnu/packages/hunspell.scm b/gnu/packages/hunspell.scm index b421e8d745..d19b2aff01 100644 --- a/gnu/packages/hunspell.scm +++ b/gnu/packages/hunspell.scm @@ -434,6 +434,13 @@ spell-checking library.") #:license (list license:lgpl3+)))) +(define-public hunspell-dict-pt-pt + (let ((synopsis identity)) + (hunspell-dictionary "pt_PT" "Portuguese (Portugal)" + #:synopsis (synopsis "Hunspell dictionary for Portuguese (Portugal)") + #:home-page "https://cgit.freedesktop.org/libreoffice/dictionaries/tree/pt_PT" + #:license (list license:gpl2+)))) + ;;; ;;; Hunspell packages made from the Aspell word lists. ;;; |