diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2024-03-27 10:26:58 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2024-04-20 11:19:25 +0100 |
commit | faa1ee5475393f1bf9c678b7430c0a298eda9ae5 (patch) | |
tree | e007fab09f96f86d7f29c8c25e0a5aef2ed2a2ee | |
parent | d3f37407358ebda7c9596293b12d8a71ee8908c8 (diff) | |
download | guix-faa1ee5475393f1bf9c678b7430c0a298eda9ae5.tar guix-faa1ee5475393f1bf9c678b7430c0a298eda9ae5.tar.gz |
gnu: enchant: Add Nuspell support.
* gnu/packages/enchant.scm (enchant)[inputs]: Add NUSPELL.
Change-Id: I60d70e6b6e4952722559848f715fc68dcf3e11f4
Reviewed-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
-rw-r--r-- | gnu/packages/enchant.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/enchant.scm b/gnu/packages/enchant.scm index 2a1aa82701..1a5b2fa7f1 100644 --- a/gnu/packages/enchant.scm +++ b/gnu/packages/enchant.scm @@ -98,7 +98,7 @@ dictionaries.") ;; Tests require a relocatable build. "--enable-relocatable"))) (inputs - (list aspell hunspell)) + (list aspell hunspell nuspell)) (propagated-inputs ;; Required by enchant.pc. (list glib)) |