diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2019-01-05 22:40:26 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2019-01-05 22:55:14 +0200 |
commit | 210e43c762a01816600f4740b7a5f05b6427a47b (patch) | |
tree | 7cb4025970b145d719ff26ccd0aa0d19df18d6bd /gnu/packages/aspell.scm | |
parent | 15ad9eb6d083377261624952537c45286cab2dd1 (diff) | |
download | guix-210e43c762a01816600f4740b7a5f05b6427a47b.tar guix-210e43c762a01816600f4740b7a5f05b6427a47b.tar.gz |
gnu: hunspell-dict-en: Update to 2018-04-16.
* gnu/packages/aspell.scm (aspell-word-list): Update to 2018.04.16.
[arguments]: Use 'invoke'.
Diffstat (limited to 'gnu/packages/aspell.scm')
-rw-r--r-- | gnu/packages/aspell.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/aspell.scm b/gnu/packages/aspell.scm index 993dc560eb..ca9fc8eda5 100644 --- a/gnu/packages/aspell.scm +++ b/gnu/packages/aspell.scm @@ -2,7 +2,7 @@ ;;; Copyright © 2013, 2014, 2015, 2017, 2018 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2015, 2016 Alex Kost <alezost@gmail.com> ;;; Copyright © 2016 John Darrington <jmd@gnu.org> -;;; Copyright © 2016, 2017 Efraim Flashner <efraim@flashner.co.il> +;;; Copyright © 2016, 2017, 2019 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2016 Christopher Andersson <christopher@8bits.nu> ;;; Copyright © 2016 Theodoros Foradis <theodoros@foradis.org> ;;; Copyright © 2016, 2017 Tobias Geerinckx-Rice <me@tobias.gr> @@ -248,7 +248,7 @@ dictionaries, including personal ones.") (string-downcase language)))) (package (name (string-append "hunspell-dict-" nick)) - (version "2017.08.24") + (version "2018.04.16") (source (origin (method url-fetch) (uri (string-append @@ -256,7 +256,7 @@ dictionaries, including personal ones.") version ".tar.gz")) (sha256 (base32 - "1kdhydzg5z5x20ad2j1x5hbdhvy08ljkfdi2v3gbyvghbagxm15s")))) + "11lkrnhwrf5mvrrq45k4mads3n9aswgac8dc25ba61c75alxb5rs")))) (native-inputs `(("tar" ,tar) ("gzip" ,gzip) @@ -276,7 +276,7 @@ dictionaries, including personal ones.") (mkdir "speller/hunspell") ;; XXX: This actually builds all the dictionary variants. - (zero? (system* "make" "-C" "speller" "hunspell")))) + (invoke "make" "-C" "speller" "hunspell"))) (replace 'install (lambda* (#:key outputs #:allow-other-keys) (let* ((out (assoc-ref %outputs "out")) |