diff options
author | EuAndreh <eu@euandre.org> | 2021-06-25 11:33:34 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-06-25 11:33:34 -0300 |
commit | 0759263fdcc869eccbefacf4ef91ccdb1d2f6f0e (patch) | |
tree | 205826800608b6dbae480f5e1363faea4497640c /src | |
parent | src/xyz/euandreh/queue.scm: Use https://github.com/wooorm/dictionaries over l... (diff) | |
download | package-repository-0759263fdcc869eccbefacf4ef91ccdb1d2f6f0e.tar.gz package-repository-0759263fdcc869eccbefacf4ef91ccdb1d2f6f0e.tar.xz |
src/xyz/euandreh/queue.scm: Add hunspell-iconv back
Diffstat (limited to 'src')
-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 ee79ccf..ae7cb6b 100644 --- a/src/xyz/euandreh/queue.scm +++ b/src/xyz/euandreh/queue.scm @@ -473,6 +473,14 @@ Template::Mustache conforms to v1.1.3 of the Mustache specs.") (define-public hunspell-dict-eo-utf8 (hunspell-dictionary-utf8 "eo")) +(define-public hunspell-iconv + (package + (inherit hunspell) + (name "hunspell-iconv") + (inputs + `(("libiconv" ,libiconv) + ,@(package-inputs hunspell))))) + (list perl-tidy perl-b-lint @@ -489,6 +497,7 @@ Template::Mustache conforms to v1.1.3 of the Mustache specs.") perl-class-tiny-antlers perl-moosex-mungehas perl-template-mustache + hunspell-iconv hunspell-dict-en-utf8 hunspell-dict-pt-utf8 hunspell-dict-fr-utf8 |