diff options
author | EuAndreh <eu@euandre.org> | 2021-06-24 23:13:21 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-06-24 23:15:37 -0300 |
commit | db44959a35b0dad120417da0f987438726878473 (patch) | |
tree | 93a6cc3381aceb8925ac4da129d5b09ffd9503ba /src/xyz | |
parent | src/xyz/euandreh/queue.scm: Use hunspell function instead of aspell function ... (diff) | |
download | package-repository-db44959a35b0dad120417da0f987438726878473.tar.gz package-repository-db44959a35b0dad120417da0f987438726878473.tar.xz |
src/xyz/euandreh/queue.scm: Add hunspell-iconv
Diffstat (limited to 'src/xyz')
-rw-r--r-- | src/xyz/euandreh/queue.scm | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/xyz/euandreh/queue.scm b/src/xyz/euandreh/queue.scm index f30a799..03321cb 100644 --- a/src/xyz/euandreh/queue.scm +++ b/src/xyz/euandreh/queue.scm @@ -488,6 +488,14 @@ spell-checking library.") #:home-page "https://eo.libreoffice.org/helpo/" #:license license:gpl3)) +(define-public hunspell-iconv + (package + (inherit hunspell) + (name "hunspell-iconv") + (inputs + `(("libiconv" ,libiconv) + ,@(package-inputs hunspell))))) + (list perl-tidy perl-b-lint @@ -504,5 +512,6 @@ spell-checking library.") perl-class-tiny-antlers perl-moosex-mungehas perl-template-mustache + hunspell-iconv hunspell-dict-pt-br hunspell-dict-eo) |