diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2024-10-16 19:07:37 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-11-17 23:15:49 +0100 |
commit | b2458247194a54c251618a0b9e8be26558ecfd41 (patch) | |
tree | dc832d153a5c73f14292da1fc5d9c7a4b9ecd6be /gnu/packages | |
parent | 916c08c465ce7eb5665923935bf160af507d22e3 (diff) | |
download | guix-b2458247194a54c251618a0b9e8be26558ecfd41.tar.gz |
gnu: hunspell-dictionary: Update to 24.8.2.1.
* gnu/packages/hunspell.scm (hunspell-dictionary): Update to 24.8.2.1. [source]<origin>: Change url, anongit returns gateway http errors 504. Change-Id: Ida030cc94a406ace042eccbe75f60d4505e18a11 Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/hunspell.scm | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gnu/packages/hunspell.scm b/gnu/packages/hunspell.scm index 8c076de3c4..eed10b16bb 100644 --- a/gnu/packages/hunspell.scm +++ b/gnu/packages/hunspell.scm @@ -309,18 +309,17 @@ spell-checking library.") (#\_ #\-) (chr chr)) (string-downcase dict-name)))) - (version "7.6.7.2") + (version "24.8.2.1") (source (origin (method git-fetch) (uri (git-reference - (url (string-append "https://anongit.freedesktop.org/git/" - "libreoffice/dictionaries.git/")) + (url "https://github.com/LibreOffice/dictionaries") (commit (string-append "libreoffice-" version)))) (file-name (git-file-name "libreoffice-dictionaries" version)) (sha256 - (base32 "1f54z1kmpwv9s5a9jdgf97m43nhwbmsar0i6rri3qkgf3kkgz1f7")))) + (base32 "02dhpfrhp82p08hx89lfx2gjbyp0kk2vbapmb3g7fphc9pabpg9c")))) (build-system trivial-build-system) (native-inputs `(("source" ,source))) |