From c143bad02ebcb7d94ad6e2582b6831c5d107e2a8 Mon Sep 17 00:00:00 2001 From: Kei Kebreau Date: Thu, 9 Nov 2017 17:49:02 -0500 Subject: [PATCH] gnu: Fix hunspell-dict-en-* dictionary installation. * gnu/packages/aspell.scm (aspell-word-list)[arguments]: Install the .dic file for all hunspell dictionaries. --- gnu/packages/aspell.scm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gnu/packages/aspell.scm b/gnu/packages/aspell.scm index 3eeeee64f..86e059834 100644 --- a/gnu/packages/aspell.scm +++ b/gnu/packages/aspell.scm @@ -270,6 +270,8 @@ dictionaries, including personal ones.") (doc (string-append out "/share/doc/" ,name))) (mkdir-p myspell) + (install-file ,(string-append "speller/" language ".dic") + hunspell) (install-file ,(string-append "speller/" language ".aff") hunspell) (symlink hunspell (string-append myspell "/dicts")) -- 2.14.3