2013-01-07 15:30:45 -05:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2020-05-19 09:55:08 -04:00
|
|
|
;;; Copyright © 2013, 2014, 2015, 2017, 2018, 2019, 2020 Ludovic Courtès <ludo@gnu.org>
|
2016-01-24 03:14:59 -05:00
|
|
|
;;; Copyright © 2015, 2016 Alex Kost <alezost@gmail.com>
|
2016-11-21 15:08:06 -05:00
|
|
|
;;; Copyright © 2016 John Darrington <jmd@gnu.org>
|
2022-01-13 11:54:56 -05:00
|
|
|
;;; Copyright © 2016, 2017, 2019, 2020, 2022 Efraim Flashner <efraim@flashner.co.il>
|
2016-12-04 05:24:26 -05:00
|
|
|
;;; Copyright © 2016 Christopher Andersson <christopher@8bits.nu>
|
2017-09-29 06:36:20 -04:00
|
|
|
;;; Copyright © 2016 Theodoros Foradis <theodoros@foradis.org>
|
2021-01-05 14:51:31 -05:00
|
|
|
;;; Copyright © 2016, 2017, 2019, 2021 Tobias Geerinckx-Rice <me@tobias.gr>
|
2019-06-01 05:29:30 -04:00
|
|
|
;;; Copyright © 2019 Jens Mølgaard <jens@zete.tk>
|
2020-02-02 09:43:05 -05:00
|
|
|
;;; Copyright © 2020 Timotej Lazar <timotej.lazar@araneo.si>
|
2020-04-29 10:49:36 -04:00
|
|
|
;;; Copyright © 2020 Marcin Karpezo <sirmacik@wioo.waw.pl>
|
2020-07-28 07:36:09 -04:00
|
|
|
;;; Copyright © 2020 Jonathan Brielmaier <jonathan.brielmaier@web.de>
|
|
|
|
;;; Copyright © 2020 Jakub Kądziołka <kuba@kadziolka.net>
|
2020-11-05 15:37:31 -05:00
|
|
|
;;; Copyright © 2020 Noah Landis <noahlandis@posteo.net>
|
2021-04-27 15:33:11 -04:00
|
|
|
;;; Copyright © 2021 Sergiu Ivanov <sivanov@colimite.fr>
|
2023-02-21 15:12:24 -05:00
|
|
|
;;; Copyright © 2023 Yovan Naumovski <yovan@gorski.stream>
|
2023-02-14 21:41:41 -05:00
|
|
|
;;; Copyright © 2023 Zheng Junjie <873216071@qq.com>
|
2013-01-07 15:30:45 -05:00
|
|
|
;;;
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
;;; your option) any later version.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2013-01-17 19:06:24 -05:00
|
|
|
(define-module (gnu packages aspell)
|
2013-01-07 15:30:45 -05:00
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix download)
|
|
|
|
#:use-module (guix build-system gnu)
|
|
|
|
#:use-module (guix licenses)
|
2018-07-23 06:19:19 -04:00
|
|
|
#:use-module (guix utils)
|
2017-05-17 10:10:48 -04:00
|
|
|
#:use-module (gnu packages)
|
2017-10-27 12:28:46 -04:00
|
|
|
#:use-module (gnu packages base)
|
2020-07-28 07:36:09 -04:00
|
|
|
#:use-module (gnu packages bison)
|
2017-10-27 12:28:46 -04:00
|
|
|
#:use-module (gnu packages compression)
|
2020-07-28 07:36:09 -04:00
|
|
|
#:use-module (gnu packages ncurses)
|
2019-06-06 01:06:56 -04:00
|
|
|
#:use-module (gnu packages perl)
|
|
|
|
#:use-module (ice-9 match))
|
2013-01-07 15:30:45 -05:00
|
|
|
|
|
|
|
(define-public aspell
|
|
|
|
(package
|
|
|
|
(name "aspell")
|
2019-11-14 16:38:10 -05:00
|
|
|
(version "0.60.8")
|
2013-01-07 15:30:45 -05:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://gnu/aspell/aspell-"
|
|
|
|
version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2019-11-14 16:38:10 -05:00
|
|
|
"1wi60ankalmh8ds7nplz434jd7j94gdvbahdwsr539rlad8pxdzr"))
|
2022-08-11 18:06:41 -04:00
|
|
|
(patches (search-patches "aspell-default-dict-dir.patch"
|
|
|
|
"aspell-CVE-2019-25051.patch"))))
|
2013-01-07 15:30:45 -05:00
|
|
|
(build-system gnu-build-system)
|
2016-01-08 08:23:12 -05:00
|
|
|
(arguments
|
|
|
|
`(#:phases
|
|
|
|
(modify-phases %standard-phases
|
2018-07-23 06:19:19 -04:00
|
|
|
(add-before 'build 'set-filter-path
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
;; Change the default value of 'filter-path' so that filters such
|
|
|
|
;; as 'tex-filter.so' can be found. By default none of the
|
|
|
|
;; filters would be found.
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
(libdir (string-append out "/lib/aspell-"
|
|
|
|
,(version-major+minor version))))
|
|
|
|
(substitute* "common/config.cpp"
|
|
|
|
(("\"filter-path(.*)DICT_DIR" _ middle)
|
|
|
|
(string-append "\"filter-path" middle
|
|
|
|
"\"" libdir "\"")))
|
2018-03-20 14:10:12 -04:00
|
|
|
#t))))))
|
2023-02-14 21:41:41 -05:00
|
|
|
(native-inputs (list perl))
|
2017-05-17 10:10:48 -04:00
|
|
|
|
|
|
|
(native-search-paths
|
|
|
|
;; This is a Guix-specific environment variable that takes a single
|
|
|
|
;; entry, not an actual search path.
|
|
|
|
(list (search-path-specification
|
|
|
|
(variable "ASPELL_DICT_DIR")
|
|
|
|
(separator #f)
|
|
|
|
(files '("lib/aspell")))))
|
|
|
|
|
2013-01-07 15:30:45 -05:00
|
|
|
(home-page "http://aspell.net/")
|
gnu: Use synopses from the Womb.
* gnu/packages/algebra.scm,
gnu/packages/aspell.scm,
gnu/packages/autotools.scm,
gnu/packages/base.scm,
gnu/packages/bash.scm,
gnu/packages/bison.scm,
gnu/packages/cdrom.scm,
gnu/packages/cflow.scm,
gnu/packages/compression.scm,
gnu/packages/cpio.scm,
gnu/packages/cppi.scm,
gnu/packages/ddrescue.scm,
gnu/packages/dejagnu.scm,
gnu/packages/ed.scm,
gnu/packages/emacs.scm,
gnu/packages/fdisk.scm,
gnu/packages/gawk.scm,
gnu/packages/gcc.scm,
packages/gcc.scm, b/gnu/packages/gcc.scm,
4b982 100644
s/gcc.scm,
s/gcc.scm,
@@
%standard-phases)))))
`((gcc-libc . ,(assoc-ref inputs "libc"))))
The GNU Compiler Collection")
GNU Compiler Collection")
n
ompiler Collection includes compiler front ends for C, C++,
tran, OpenMP for C/C++/Fortran, Java, and Ada, as well as
gnu/packages/gdb.scm,
gnu/packages/gettext.scm,
gnu/packages/ghostscript.scm,
gnu/packages/glib.scm,
gnu/packages/global.scm,
gnu/packages/gnupg.scm,
gnu/packages/gnutls.scm,
gnu/packages/gperf.scm,
gnu/packages/gprolog.scm,
gnu/packages/groff.scm,
gnu/packages/grub.scm,
gnu/packages/gsasl.scm,
gnu/packages/guile.scm,
gnu/packages/help2man.scm,
gnu/packages/idutils.scm,
gnu/packages/indent.scm,
gnu/packages/less.scm,
gnu/packages/libidn.scm,
gnu/packages/libsigsegv.scm,
gnu/packages/libunistring.scm,
gnu/packages/linux.scm,
gnu/packages/lsh.scm,
gnu/packages/m4.scm,
gnu/packages/mailutils.scm,
gnu/packages/multiprecision.scm,
gnu/packages/nano.scm,
gnu/packages/ncurses.scm,
gnu/packages/nettle.scm,
gnu/packages/oggvorbis.scm,
gnu/packages/parted.scm,
gnu/packages/pth.scm,
gnu/packages/readline.scm,
gnu/packages/recutils.scm,
gnu/packages/scheme.scm,
gnu/packages/screen.scm,
gnu/packages/shishi.scm,
gnu/packages/smalltalk.scm,
gnu/packages/system.scm,
gnu/packages/texinfo.scm,
gnu/packages/time.scm,
gnu/packages/wdiff.scm,
gnu/packages/wget.scm,
gnu/packages/which.scm: Use synopses from the Womb.
2013-04-17 12:04:25 -04:00
|
|
|
(synopsis "Spell checker")
|
2013-01-07 15:30:45 -05:00
|
|
|
(description
|
Synchronize package descriptions with the Womb.
* gnu/packages/algebra.scm,
gnu/packages/aspell.scm,
gnu/packages/autotools.scm,
gnu/packages/base.scm,
gnu/packages/bash.scm,
gnu/packages/bison.scm,
gnu/packages/cdrom.scm,
gnu/packages/cflow.scm,
gnu/packages/compression.scm,
gnu/packages/cpio.scm,
gnu/packages/cppi.scm,
gnu/packages/ddrescue.scm,
gnu/packages/dejagnu.scm,
gnu/packages/ed.scm,
gnu/packages/emacs.scm,
gnu/packages/fdisk.scm,
gnu/packages/freeipmi.scm,
gnu/packages/gawk.scm,
gnu/packages/gcal.scm,
gnu/packages/gcc.scm,
gnu/packages/gdb.scm,
gnu/packages/gdbm.scm,
gnu/packages/gettext.scm,
gnu/packages/ghostscript.scm,
gnu/packages/global.scm,
gnu/packages/gnunet.scm,
gnu/packages/gnupg.scm,
gnu/packages/gnutls.scm,
gnu/packages/gperf.scm,
gnu/packages/gprolog.scm,
gnu/packages/groff.scm,
gnu/packages/grub.scm,
gnu/packages/gsasl.scm,
gnu/packages/guile.scm,
gnu/packages/gv.scm,
gnu/packages/help2man.scm,
gnu/packages/idutils.scm,
gnu/packages/indent.scm,
gnu/packages/less.scm,
gnu/packages/libidn.scm,
gnu/packages/libsigsegv.scm,
gnu/packages/libunistring.scm,
gnu/packages/lightning.scm,
gnu/packages/linux.scm,
gnu/packages/lsh.scm,
gnu/packages/m4.scm,
gnu/packages/mail.scm,
gnu/packages/maths.scm,
gnu/packages/multiprecision.scm,
gnu/packages/nano.scm,
gnu/packages/ncurses.scm,
gnu/packages/nettle.scm,
gnu/packages/ocrad.scm,
gnu/packages/oggvorbis.scm,
gnu/packages/parted.scm,
gnu/packages/plotutils.scm,
gnu/packages/pth.scm,
gnu/packages/readline.scm,
gnu/packages/recutils.scm,
gnu/packages/rush.scm,
gnu/packages/scheme.scm,
gnu/packages/screen.scm,
gnu/packages/shishi.scm,
gnu/packages/smalltalk.scm,
gnu/packages/system.scm,
gnu/packages/texinfo.scm,
gnu/packages/time.scm,
gnu/packages/unrtf.scm,
gnu/packages/version-control.scm,
gnu/packages/wdiff.scm,
gnu/packages/wget.scm,
gnu/packages/which.scm,
gnu/packages/xnee.scm,
gnu/packages/zile.scm: Change value of the 'description' field to that
of the Womb.
2013-10-09 10:14:23 -04:00
|
|
|
"Aspell is a spell-checker which can be used either as a library or as
|
|
|
|
a standalone program. Notable features of Aspell include its full support of
|
|
|
|
documents written in the UTF-8 encoding and its ability to use multiple
|
|
|
|
dictionaries, including personal ones.")
|
2013-01-07 15:30:45 -05:00
|
|
|
(license lgpl2.1+)))
|
2014-01-12 16:44:39 -05:00
|
|
|
|
|
|
|
;;;
|
|
|
|
;;; Dictionaries.
|
|
|
|
;;;
|
2016-12-19 15:26:39 -05:00
|
|
|
;;; Use 'export ASPELL_CONF="dict-dir $HOME/.guix-profile/lib/aspell"' to use
|
2017-05-17 10:10:48 -04:00
|
|
|
;;; them, or set the Guix-specific 'ASPELL_DICT_DIR', or just do nothing (as
|
|
|
|
;;; long as 'HOME' is set, that's fine!).
|
2014-01-12 16:44:39 -05:00
|
|
|
;;;
|
|
|
|
|
|
|
|
(define* (aspell-dictionary dict-name full-name
|
|
|
|
#:key version sha256 (prefix "aspell6-"))
|
|
|
|
(package
|
2019-06-06 01:06:56 -04:00
|
|
|
(name (string-append
|
|
|
|
"aspell-dict-"
|
|
|
|
;; Downcase and replace underscore in package names
|
|
|
|
;; to follow Guix naming conventions.
|
|
|
|
(string-map (match-lambda
|
|
|
|
(#\_ #\-)
|
|
|
|
(chr chr))
|
|
|
|
(string-downcase dict-name))))
|
2014-01-12 16:44:39 -05:00
|
|
|
(version version)
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://gnu/aspell/dict/" dict-name
|
|
|
|
"/" prefix dict-name "-"
|
|
|
|
version ".tar.bz2"))
|
2020-05-19 09:55:08 -04:00
|
|
|
(hash (content-hash sha256))))
|
2014-01-12 16:44:39 -05:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
2016-12-19 15:26:39 -05:00
|
|
|
`(#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(replace 'configure
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
(let ((out (assoc-ref outputs "out")))
|
2018-03-27 00:53:20 -04:00
|
|
|
(invoke "./configure")))))
|
2016-12-19 15:26:39 -05:00
|
|
|
#:make-flags
|
|
|
|
(let ((out (assoc-ref %outputs "out")))
|
|
|
|
(list (string-append "dictdir=" out "/lib/aspell")
|
|
|
|
(string-append "datadir=" out "/lib/aspell")))
|
|
|
|
#:tests? #f))
|
2021-12-13 11:18:24 -05:00
|
|
|
(native-inputs (list aspell which))
|
2014-01-12 16:44:39 -05:00
|
|
|
(synopsis (string-append full-name " dictionary for GNU Aspell")) ; XXX: i18n
|
|
|
|
(description
|
|
|
|
"This package provides a dictionary for the GNU Aspell spell checker.")
|
|
|
|
(license gpl2+)
|
2022-01-13 11:54:56 -05:00
|
|
|
(properties
|
|
|
|
;; Unfortunately any versions with a trailing 'dash and digit' (eg.: '-0')
|
|
|
|
;; will fail to register as a version.
|
|
|
|
`((upstream-name . ,(string-append prefix dict-name))
|
|
|
|
(ftp-directory . ,(string-append "/aspell/dict/" dict-name))))
|
2014-01-12 16:44:39 -05:00
|
|
|
(home-page "http://aspell.net/")))
|
|
|
|
|
2017-10-27 14:57:47 -04:00
|
|
|
|
2019-06-01 05:29:30 -04:00
|
|
|
(define-public aspell-dict-ar
|
|
|
|
(aspell-dictionary "ar" "Arabic"
|
|
|
|
#:version "1.2-0"
|
|
|
|
#:prefix "aspell6-"
|
|
|
|
#:sha256
|
|
|
|
(base32
|
|
|
|
"1avw40bp8yi5bnkq64ihm2rldgw34lk89yz281q9bmndh95a47h4")))
|
|
|
|
|
2019-06-05 05:10:34 -04:00
|
|
|
(define-public aspell-dict-be
|
|
|
|
(aspell-dictionary "be" "Belarusian"
|
|
|
|
#:version "0.01"
|
|
|
|
#:prefix "aspell5-"
|
|
|
|
#:sha256
|
|
|
|
(base32
|
|
|
|
"1svls9p7rsfi3hs0afh0cssj006qb4v1ik2yzqgj8hm10c6as2sm")))
|
|
|
|
|
2023-02-21 15:12:24 -05:00
|
|
|
(define-public aspell-dict-bg
|
|
|
|
(aspell-dictionary "bg" "Bulgarian"
|
|
|
|
#:version "4.1-0"
|
|
|
|
#:prefix "aspell6-"
|
|
|
|
#:sha256
|
|
|
|
(base32
|
|
|
|
"1alacmgpfk0yrgq83y23d16fhav1bxmb98kg8d2a5r9bvh2h0mvl")))
|
|
|
|
|
2023-01-02 20:29:13 -05:00
|
|
|
(define-public aspell-dict-bn
|
|
|
|
(aspell-dictionary "bn" "Bengali"
|
|
|
|
#:version "0.01.1-1"
|
|
|
|
#:sha256
|
|
|
|
(base32
|
|
|
|
"1nc02jd67iggirwxnhdvlvaqm0xfyks35c4psszzj3dhzv29qgxh")))
|
|
|
|
|
2017-10-27 14:57:47 -04:00
|
|
|
(define-public aspell-dict-ca
|
2019-11-02 19:30:44 -04:00
|
|
|
(let ((version "2.5.0")
|
|
|
|
(sha256
|
|
|
|
(base32 "0kbi8fi7a1bys31kfqrlh332gyik0cfdmxgl7n15sa9c305rkgwq")))
|
|
|
|
(package
|
|
|
|
(inherit (aspell-dictionary "ca" "Catalan"
|
|
|
|
#:version version
|
|
|
|
#:sha256 sha256))
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "https://www.softcatala.org/pub/softcatala/aspell/"
|
|
|
|
version "/aspell6-ca-" version ".tar.bz2"))
|
2020-05-19 09:55:08 -04:00
|
|
|
(hash (content-hash sha256))))
|
2019-11-02 19:30:44 -04:00
|
|
|
(home-page "https://www.softcatala.org/pub/softcatala/aspell/"))))
|
2014-01-12 16:44:39 -05:00
|
|
|
|
2020-11-05 15:37:31 -05:00
|
|
|
(define-public aspell-dict-cs
|
|
|
|
(aspell-dictionary "cs" "Czech"
|
|
|
|
#:version "20040614-1"
|
|
|
|
#:sha256
|
|
|
|
(base32
|
|
|
|
"0rihj4hsw96pd9casvmpvw3r8040pfa28p1h73x4vyn20zwr3h01")))
|
|
|
|
|
2016-08-27 13:52:12 -04:00
|
|
|
(define-public aspell-dict-de
|
|
|
|
(aspell-dictionary "de" "German"
|
2019-10-16 02:22:23 -04:00
|
|
|
#:version "20161207-7-0"
|
2016-08-27 13:52:12 -04:00
|
|
|
#:sha256
|
|
|
|
(base32
|
2019-10-16 02:22:23 -04:00
|
|
|
"0wamclvp66xfmv5wff96v6gdlnfv4y8lx3f8wvxyzm5imwgms4n2")))
|
2016-08-27 13:52:12 -04:00
|
|
|
|
2019-06-05 04:56:54 -04:00
|
|
|
(define-public aspell-dict-da
|
|
|
|
(aspell-dictionary "da" "Danish"
|
2020-02-17 18:04:45 -05:00
|
|
|
#:version "1.6.36-11-0"
|
2019-06-05 04:56:54 -04:00
|
|
|
#:sha256
|
|
|
|
(base32
|
2020-02-17 18:04:45 -05:00
|
|
|
"1xz2haayvwlxgss9jf1x2311a1ixbk75q2vgfprjhibsmb7cpinv")))
|
2019-06-05 04:56:54 -04:00
|
|
|
|
2017-12-09 14:42:47 -05:00
|
|
|
(define-public aspell-dict-el
|
|
|
|
(aspell-dictionary "el" "Greek"
|
|
|
|
#:version "0.08-0"
|
|
|
|
#:prefix "aspell6-"
|
|
|
|
#:sha256
|
|
|
|
(base32
|
|
|
|
"1ljcc30zg2v2h3w5h5jr5im41mw8jbsgvvhdd2cii2yzi8d0zxja")))
|
|
|
|
|
2014-01-12 16:44:39 -05:00
|
|
|
(define-public aspell-dict-en
|
|
|
|
(aspell-dictionary "en" "English"
|
2021-05-06 16:16:23 -04:00
|
|
|
#:version "2020.12.07-0"
|
2014-01-12 16:44:39 -05:00
|
|
|
#:sha256
|
|
|
|
(base32
|
2021-05-06 16:16:23 -04:00
|
|
|
"1cwzqkm8gr1w51rpckwlvb43sb0b5nbwy7s8ns5vi250515773sc")))
|
2014-01-12 16:44:39 -05:00
|
|
|
|
|
|
|
(define-public aspell-dict-eo
|
|
|
|
(aspell-dictionary "eo" "Esperanto"
|
|
|
|
#:version "2.1.20000225a-2"
|
|
|
|
#:sha256
|
|
|
|
(base32
|
|
|
|
"09vf0mbiicbmyb4bwb7v7lgpabnylg0wy7m3hlhl5rjdda6x3lj1")))
|
|
|
|
|
|
|
|
(define-public aspell-dict-es
|
|
|
|
(aspell-dictionary "es" "Spanish"
|
|
|
|
#:version "1.11-2"
|
|
|
|
#:sha256
|
|
|
|
(base32
|
|
|
|
"1k5g328ac1hdpp6fsg57d8md6i0aqcwlszp3gbmp5706wyhpydmd")))
|
|
|
|
|
2019-06-05 04:58:02 -04:00
|
|
|
(define-public aspell-dict-fi
|
|
|
|
(aspell-dictionary "fi" "Finnish"
|
|
|
|
#:version "0.7-0"
|
|
|
|
#:prefix "aspell6-"
|
|
|
|
#:sha256
|
|
|
|
(base32
|
|
|
|
"07d5s08ba4dd89cmwy9icc01i6fjdykxlb9ravmhdrhi8mxz1mzq")))
|
|
|
|
|
2014-01-12 16:44:39 -05:00
|
|
|
(define-public aspell-dict-fr
|
|
|
|
(aspell-dictionary "fr" "French"
|
|
|
|
#:version "0.50-3"
|
|
|
|
#:prefix "aspell-"
|
|
|
|
#:sha256
|
|
|
|
(base32
|
|
|
|
"14ffy9mn5jqqpp437kannc3559bfdrpk7r36ljkzjalxa53i0hpr")))
|
2015-03-02 14:12:00 -05:00
|
|
|
|
2017-12-09 14:42:47 -05:00
|
|
|
(define-public aspell-dict-grc
|
|
|
|
(aspell-dictionary "grc" "Ancient Greek"
|
|
|
|
#:version "0.02-0"
|
2015-03-02 14:12:00 -05:00
|
|
|
#:sha256
|
|
|
|
(base32
|
2017-12-09 14:42:47 -05:00
|
|
|
"1zxr8958v37v260fkqd4pg37ns5h5kyqm54hn1hg70wq5cz8h512")))
|
|
|
|
|
|
|
|
(define-public aspell-dict-he
|
|
|
|
(aspell-dictionary "he" "Hebrew"
|
|
|
|
#:version "1.0-0"
|
|
|
|
#:sha256
|
|
|
|
(base32
|
|
|
|
"13bhbghx5b8g0119g3wxd4n8mlf707y41vlf59irxjj0kynankfn")))
|
2016-01-07 07:55:57 -05:00
|
|
|
|
2019-06-05 04:58:51 -04:00
|
|
|
(define-public aspell-dict-hi
|
|
|
|
(aspell-dictionary "hi" "Hindi"
|
|
|
|
#:version "0.02-0"
|
|
|
|
#:prefix "aspell6-"
|
|
|
|
#:sha256
|
|
|
|
(base32
|
|
|
|
"0drs374qz4419zx1lf2k281ydxf2750jk5ailafj1x0ncz27h1ys")))
|
|
|
|
|
2016-01-07 07:55:57 -05:00
|
|
|
(define-public aspell-dict-it
|
2019-03-12 08:14:53 -04:00
|
|
|
(let ((version "2.4-20070901-0")
|
|
|
|
(sha256
|
|
|
|
(base32 "0d6ypii3jblprpibazb6ypady536jz62rwxlss1x1raq07rhvvqn")))
|
|
|
|
(package
|
|
|
|
(inherit (aspell-dictionary "it" "Italian"
|
|
|
|
#:version version
|
|
|
|
#:sha256 sha256))
|
|
|
|
|
|
|
|
;; The version hosted at <https://ftp.gnu.org/gnu/aspell/dict> is even
|
|
|
|
;; more out of date.
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://sourceforge/linguistico/"
|
|
|
|
"Dizionario%20italiano%20per%20Aspell/" version "/"
|
|
|
|
"aspell6-it-" version ".tar.bz2"))
|
2020-05-19 09:55:08 -04:00
|
|
|
(hash (content-hash sha256))))
|
2019-03-12 08:14:53 -04:00
|
|
|
(home-page
|
gnu: Use HTTPS package home pages wherever possible.
* gnu/packages/accessibility.scm (florence)[home-page]: Use HTTPS.
* gnu/packages/admin.scm (netcat, nmon)[home-page]: Likewise.
* gnu/packages/algebra.scm (mpfrcx, cm, flint, fftw, r-dtt)[home-page]:
Likewise.
* gnu/packages/apr.scm (apr, apr-util)[home-page]: Likewise.
* gnu/packages/aspell.scm (aspell-dict-it)[home-page]: Likewise.
* gnu/packages/astronomy.scm (casacore, sextractor, libnova)
(xplanet)[home-page]: Likewise.
* gnu/packages/audio.scm (libtimidity, alsa-modular-synth, azr3, tao)
(freepats, rakarrack, liblo, libshout-idjc, timidity++, libsbsms)
(libmodplug, libxmp, xmp, sox, drc, gsm, gnaural)
(streamripper)[home-page]: Likewise.
* gnu/packages/authentication.scm (pamtester)[home-page]: Likewise.
* gnu/packages/backup.scm (grsync)[home-page]: Likewise.
* gnu/packages/bioconductor.scm (r-nmf, r-edger, r-limma)
(r-plgem)[home-page]: Likewise.
* gnu/packages/bioinformatics.scm (python-biom-format, bowtie, bowtie1)
(bwa, crossmap, java-htsjdk, java-htsjdk-latest, java-picard)
(java-picard-2.10.3, kaiju, proteinortho, rsem, rseqc, seek, samtools)
(snap-aligner, subread, stringtie, r-centipede, prinseq, emboss, phylip)
(libsbml)[home-page]: Likewise.
* gnu/packages/build-tools.scm (tup)[home-page]: Likewise.
* gnu/packages/cdrom.scm (libcddb, cdrdao, cdrtools)
(cd-discid)[home-page]: Likewise.
* gnu/packages/check.scm (cunit, python-nose)
(python-pyhamcrest)[home-page]: Likewise.
* gnu/packages/chemistry.scm (gromacs)[home-page]: Likewise.
* gnu/packages/chez.scm (chez-fmt)[home-page]: Likewise.
* gnu/packages/code.scm (lcov, uncrustify, cscope)[home-page]: Likewise.
* gnu/packages/compression.scm (p7zip)[home-page]: Likewise.
* gnu/packages/cran.scm (r-emdist, r-proj4, r-zoo, r-ggalluvial)
(r-orgmassspecr, r-polychrome, r-partykit, r-rcpp, r-ff, r-emdbook)
(r-fitdistrplus, r-linprog, r-geometry, r-dtw, r-fst, r-rjags)
(r-intergraph, r-qualv, r-labelled, r-survey, r-coin, r-fmsb, r-tm)
(r-corpcor, r-rmpfr, r-spatialextremes, r-longitudinal, r-genenet)
(r-bayesm, r-seqinr, r-mpm, r-text2vec, r-rgdal, r-seewave, r-hdrcde)
(r-shapes, r-anytime, r-stm, r-d3network, r-tam, r-directlabels)
(r-spatstat-utils, r-spatstat-sparse, r-spatstat-data, r-spatstat-geom)
(r-spatstat-core, r-spatstat-linnet, r-spatstat-random, r-spatstat)
(r-rcpptoml, r-mlecens, r-seurat, r-mlearning, r-zooimage)[home-page]:
Likewise.
* gnu/packages/crates-io.scm (rust-nickel-0.11, rust-thrift-0.13)
(rust-trust-dns-https-0.20, rust-trust-dns-native-tls-0.20)
(rust-trust-dns-openssl-0.20, rust-trust-dns-proto-0.20)
(rust-trust-dns-resolver-0.20, rust-trust-dns-rustls-0.20)
(rust-uint-0.9, rust-yaml-rust-0.4)[home-page]: Likewise.
* gnu/packages/crypto.scm (libdecaf, ccrypt)[home-page]: Likewise.
* gnu/packages/curl.scm (curlpp)[home-page]: Likewise.
* gnu/packages/databases.scm (python-pylibmc, unixodbc, wiredtiger)
(libpqxx, mdbtools, virtuoso-ose, libdbi, libdbi-drivers)
(soci)[home-page]: Likewise.
* gnu/packages/debian.scm (apt-mirror)[home-page]: Likewise.
* gnu/packages/debug.scm (remake)[home-page]: Likewise.
* gnu/packages/disk.scm (sdparm, idle3-tools, duc)[home-page]: Likewise.
* gnu/packages/django.scm (python-django-haystack)[home-page]: Likewise.
* gnu/packages/djvu.scm (djvulibre, djview)[home-page]: Likewise.
* gnu/packages/dns.scm (dnsmasq)[home-page]: Likewise.
* gnu/packages/docbook.scm (dblatex, docbook2x)[home-page]: Likewise.
* gnu/packages/documentation.scm (scrollkeeper)[home-page]: Likewise.
* gnu/packages/ebook.scm (liblinebreak)[home-page]: Likewise.
* gnu/packages/electronics.scm (xoscope)[home-page]: Likewise.
* gnu/packages/emacs-xyz.scm (emacs-bbdb, emacs-caps-lock, emacs-djvu)
(emacs-pabbrev, emacs-twittering-mode, emacs-filladapt, emacs-rudel)
(emacs-stream, emacspeak, emacs-cc-mode, emacs-eldoc, emacs-jsonrpc)
(emacs-gtk-look, emacs-xclip, emacs-slime-volleyball, emacs-minimap)
(emacs-auto-dictionary-mode, emacs-persist, emacs-shell-command+)
(emacs-map, emacs-xref, emacs-dictionary)[home-page]: Likewise.
* gnu/packages/embedded.scm (sdcc)[home-page]: Likewise.
* gnu/packages/engineering.scm (asco, libngspice, libspnav)
(openctm)[home-page]: Likewise.
* gnu/packages/erlang.scm (erlang-erlware-commons)[home-page]: Likewise.
* gnu/packages/file-systems.scm (jfsutils, curlftpfs)[home-page]:
Likewise.
* gnu/packages/finance.scm (gbonds)[home-page]: Likewise.
* gnu/packages/flashing-tools.scm (dfu-util, srecord)[home-page]:
Likewise.
* gnu/packages/fltk.scm (ntk)[home-page]: Likewise.
* gnu/packages/fonts.scm (font-terminus, font-tex-gyre)
(font-comic-neue)[home-page]: Likewise.
* gnu/packages/fontutils.scm (ttf2pt1, potrace, libspiro)[home-page]:
Likewise.
* gnu/packages/fpga.scm (icestorm, gtkwave, gtkwave)
(python-myhdl)[home-page]: Likewise.
* gnu/packages/freedesktop.scm (libatasmart)[home-page]: Likewise.
* gnu/packages/ftp.scm (weex)[home-page]: Likewise.
* gnu/packages/game-development.scm (dds, python-tmx, sfxr, quesoglc)
(eureka, plib)[home-page]: Likewise.
* gnu/packages/games.scm (abe, alex4, armagetronad, barony)
(foobillard++, golly, ltris, pipewalker, prboom-plus, trigger-rally)
(cmatrix, pinball, pioneers, tennix, chromium-bsu, freeciv, kiki)
(quakespasm, frotz, frotz-dumb-terminal, frotz-sdl, btanks)
(flare-engine, chessx, barrage, cgoban, passage)[home-page]: Likewise.
* gnu/packages/geo.scm (python-geopandas, saga)[home-page]: Likewise.
* gnu/packages/gl.scm (freeglut, gl2ps)[home-page]: Likewise.
* gnu/packages/gnome.scm (cogl, clutter-gtk, clutter-gst, bluefish)
(workrave)[home-page]: Likewise.
* gnu/packages/gnustep.scm (wmnd, wmfire, wmfire)[home-page]: Likewise.
* gnu/packages/graph.scm (mscgen)[home-page]: Likewise.
* gnu/packages/graphics.scm (assimp, alembic, ctl, agg)
(opencsg)[home-page]: Likewise.
* gnu/packages/graphviz.scm (gts)[home-page]: Likewise.
* gnu/packages/gtk.scm (gtkspell3)[home-page]: Likewise.
* gnu/packages/guile-xyz.scm (guile-irregex)[home-page]: Likewise.
* gnu/packages/haskell-apps.scm (cpphs)[home-page]: Likewise.
* gnu/packages/haskell-check.scm (ghc-hunit)[home-page]: Likewise.
* gnu/packages/haskell-web.scm (ghc-http-client-restricted)
(ghc-blaze-html, ghc-happstack-server, ghc-sourcemap)[home-page]:
Likewise.
* gnu/packages/haskell-xyz.scm (ghc-assoc, ghc-cairo, ghc-cborg)
(ghc-csv, ghc-glob, ghc-gtk2hs-buildtools, ghc-hmatrix-gsl-stats)
(ghc-intervalmap, ghc-lens-family-core, ghc-managed, ghc-mountpoints)
(ghc-network-multicast, ghc-optional-args, ghc-regex, ghc-spoon)
(ghc-transformers, ghc-turtle, ghc-utf8-light, ghc-wizards)
(ghc-template-haskell, ghc-boot-th, ghc-binary-orphans)
(ghc-postgresql-simple)[home-page]: Likewise.
* gnu/packages/hexedit.scm (ht, bvi)[home-page]: Likewise.
* gnu/packages/hunspell.scm (hunspell-dict-hu)[home-page]: Likewise.
* gnu/packages/image-processing.scm (mia)[home-page]: Likewise.
* gnu/packages/image-viewers.scm (geeqie, gpicview, luminance-hdr)
(qiv)[home-page]: Likewise.
* gnu/packages/image.scm (libuemf, devil, steghide, optipng, niftilib)
(sng, mtpaint)[home-page]: Likewise.
* gnu/packages/java-xml.scm (java-simple-xml, java-jaxp)
(java-apache-xml-commons-resolver)[home-page]: Likewise.
* gnu/packages/java.scm (java-cisd-base, java-cisd-args4j)
(java-hamcrest-core, java-jsr305, java-eclipse-osgi)
(java-eclipse-equinox-common, java-eclipse-core-jobs)
(java-eclipse-equinox-registry, java-eclipse-equinox-app)
(java-eclipse-equinox-preferences, java-eclipse-core-contenttype)
(java-eclipse-text, java-treelayout, java-aopalliance, java-jeromq)
(java-cdi-api)[home-page]: Likewise.
* gnu/packages/jemalloc.scm (jemalloc-4.5.0)[home-page]: Likewise.
* gnu/packages/julia-xyz.scm (julia-recipespipeline)[home-page]:
Likewise.
* gnu/packages/kde-internet.scm (kget)[home-page]: Likewise.
* gnu/packages/kde-systemtools.scm (dolphin-plugins)
(konsole)[home-page]: Likewise.
* gnu/packages/kodi.scm (fstrcmp)[home-page]: Likewise.
* gnu/packages/language.scm (hime, libchewing)[home-page]: Likewise.
* gnu/packages/lego.scm (nqc)[home-page]: Likewise.
* gnu/packages/lesstif.scm (lesstif)[home-page]: Likewise.
* gnu/packages/libcanberra.scm (libcanberra)[home-page]: Likewise.
* gnu/packages/libdaemon.scm (libdaemon)[home-page]: Likewise.
* gnu/packages/libffi.scm (libffi)[home-page]: Likewise.
* gnu/packages/libreoffice.scm (libwpd, libwpg, libwps)[home-page]:
Likewise.
* gnu/packages/libusb.scm (libmtp, gmtp)[home-page]: Likewise.
* gnu/packages/linux.scm (e2fsprogs, extundelete, lsscsi, net-tools)
(kbd, sysfsutils, cpuid, libpfm4)[home-page]: Likewise.
* gnu/packages/lisp-check.scm (sbcl-ptester, sbcl-xlunit)[home-page]:
Likewise.
* gnu/packages/lisp-xyz.scm (sbcl-html-encode, sbcl-py-configparser)
(sbcl-cl-utilities, sbcl-series, sbcl-uffi, sbcl-clsql, sbcl-sycamore)
(sbcl-osicat, sbcl-hu.dwim.common, sbcl-caveman, sbcl-trivial-shell)
(sbcl-trivial-benchmark, sbcl-screamer, sbcl-smug)[home-page]: Likewise.
* gnu/packages/lisp.scm (lush2)[home-page]: Likewise.
* gnu/packages/logging.scm (log4cpp)[home-page]: Likewise.
* gnu/packages/lua.scm (lua-ldoc)[home-page]: Likewise.
* gnu/packages/machine-learning.scm (mcl, openfst, rxcpp)[home-page]:
Likewise.
* gnu/packages/mail.scm (muchsync, procmail, sendmail)
(opensmtpd-filter-dkimsign, crm114)[home-page]: Likewise.
* gnu/packages/man.scm (libpipeline, man-db)[home-page]: Likewise.
* gnu/packages/maths.scm (lapack, scalapack, hdf-eos5, itpp, gmsh)
(metamath, p4est, armadillo, suitesparse, atlas, lpsolve, wcalc, why3)
(frama-c)[home-page]: Likewise.
* gnu/packages/mcrypt.scm (mcrypt, libmcrypt, libmhash)[home-page]:
Likewise.
* gnu/packages/minetest.scm (minetest-advtrains)[home-page]: Likewise.
* gnu/packages/monitoring.scm (python-whisper, python-carbon)
(hostscope)[home-page]: Likewise.
* gnu/packages/mp3.scm (id3lib, libmp3splt, mp3splt, mpg321)
(lame)[home-page]: Likewise.
* gnu/packages/multiprecision.scm (mpc)[home-page]: Likewise.
* gnu/packages/music.scm (aria-maestosa, lingot, setbfree, bristol)
(portmidi, python-pyportmidi, zynaddsubfx, yoshimi, aj-snapshot)
(schismtracker, midicsv, midicsv, qmidiarp, qmidiroute, dssi, tap-lv2)
(shiru-lv2)[home-page]: Likewise.
* gnu/packages/ncurses.scm (stfl)[home-page]: Likewise.
* gnu/packages/networking.scm (lksctp-tools, mbuffer, ifstatus, bird)
(tunctl, traceroute)[home-page]: Likewise.
* gnu/packages/node-xyz.scm (node-mersenne)[home-page]: Likewise.
* gnu/packages/ntp.scm (openntpd)[home-page]: Likewise.
* gnu/packages/ocaml.scm (opam, hevea, ocaml-menhir, ocaml-piqilib)
(ocaml-graph, cubicle)[home-page]: Likewise.
* gnu/packages/opencl.scm (python-pyopencl)[home-page]: Likewise.
* gnu/packages/package-management.scm (xstow, modules)[home-page]:
Likewise.
* gnu/packages/parallel.scm (xjobs)[home-page]: Likewise.
* gnu/packages/pdf.scm (podofo, qpdf, xournal, impressive)[home-page]:
Likewise.
* gnu/packages/perl.scm (perl-math-vecstat, perltidy)[home-page]:
Likewise.
* gnu/packages/photo.scm (libpano13, enblend-enfuse, hugin)[home-page]:
Likewise.
* gnu/packages/plan9.scm (drawterm)[home-page]: Likewise.
* gnu/packages/plotutils.scm (guile-charting, ploticus)[home-page]:
Likewise.
* gnu/packages/popt.scm (argtable, popt)[home-page]: Likewise.
* gnu/packages/profiling.scm (otf2)[home-page]: Likewise.
* gnu/packages/pulseaudio.scm (pulseaudio)[home-page]: Likewise.
* gnu/packages/python-check.scm (python-mypy)[home-page]: Likewise.
* gnu/packages/python-web.scm (python-cssutils)
(python-translationstring)[home-page]: Likewise.
* gnu/packages/python-xyz.scm (python-diskcache, python-doxyqml)
(python-docutils, python-pexpect, python-importlib-resources)
(python-simplegeneric, python-urwid, python-xlrd, python-xlwt)
(python-pyasn1, python-pythondialog, python-tftpy, python-random2)
(python-arcp, python-pyopengl, python-sortedcollections)
(python-sortedcontainers, python-yapsy, python-pydispatcher)
(python-posix-ipc)[home-page]: Likewise.
* gnu/packages/qt.scm (qwt, libqglviewer, signond)[home-page]: Likewise.
* gnu/packages/radio.scm (unixcw, gnuais)[home-page]: Likewise.
* gnu/packages/raspberry-pi.scm (bcm2835)[home-page]: Likewise.
* gnu/packages/rdf.scm (clucene, rasqal, redland)[home-page]: Likewise.
* gnu/packages/regex.scm (tre)[home-page]: Likewise.
* gnu/packages/rsync.scm (librsync)[home-page]: Likewise.
* gnu/packages/ruby.scm (ruby-packnga, ruby-nokogiri, ruby-oj, ruby-ox)
(ruby-sinatra, ruby-citrus, ruby-cbor, ruby-roda)[home-page]: Likewise.
* gnu/packages/scheme.scm (scheme48, tinyscheme)[home-page]: Likewise.
* gnu/packages/screen.scm (dtach)[home-page]: Likewise.
* gnu/packages/scsi.scm (sg3-utils)[home-page]: Likewise.
* gnu/packages/sdl.scm (libmikmod, sdl-pango)[home-page]: Likewise.
* gnu/packages/shellutils.scm (hstr, rig)[home-page]: Likewise.
* gnu/packages/simulation.scm (python-dolfin-adjoint)[home-page]:
Likewise.
* gnu/packages/smalltalk.scm (smalltalk)[home-page]: Likewise.
* gnu/packages/speech.scm (espeak)[home-page]: Likewise.
* gnu/packages/stalonetray.scm (stalonetray)[home-page]: Likewise.
* gnu/packages/statistics.scm (jags, r-mass, r-class, r-lattice)
(r-matrix, r-nnet, r-spatial, r-bit, r-bit64, r-digest, r-xtable)
(python-statsmodels, r-ade4, r-latticeextra, r-rcurl, r-xml, r-mvtnorm)
(r-robustbase, r-minqa, r-fdrtool, java-jdistlib, xlispstat)[home-page]:
Likewise.
* gnu/packages/swig.scm (swig)[home-page]: Likewise.
* gnu/packages/task-management.scm (wtime)[home-page]: Likewise.
* gnu/packages/tcl.scm (itcl, tclxml, tclx)[home-page]: Likewise.
* gnu/packages/terminals.scm (libtermkey, mlterm, libvterm)
(libvterm)[home-page]: Likewise.
* gnu/packages/tex.scm (texlive-lm, texlive-lm-math, texlive-cs)
(texlive-csplain, biber, texmaker)[home-page]: Likewise.
* gnu/packages/text-editors.scm (joe)[home-page]: Likewise.
* gnu/packages/textutils.scm (drm-tools, docx2txt)[home-page]: Likewise.
* gnu/packages/tv.scm (tvtime)[home-page]: Likewise.
* gnu/packages/unicode.scm (libunibreak)[home-page]: Likewise.
* gnu/packages/upnp.scm (libupnp)[home-page]: Likewise.
* gnu/packages/version-control.scm (cvs)[home-page]: Likewise.
* gnu/packages/video.scm (transcode, libquicktime, mjpegtools, aalib)
(liba52, libmpeg2, x265, libdv, dvdauthor, aegisub, pitivi, gavl)
(dvdbackup, guvcview, video-contact-sheet)[home-page]: Likewise.
* gnu/packages/virtualization.scm (bochs)[home-page]: Likewise.
* gnu/packages/w3m.scm (w3m)[home-page]: Likewise.
* gnu/packages/web.scm (qjson, libquvi-scripts, libquvi, quvi)
(tidy-html, htmlcxx)[home-page]: Likewise.
* gnu/packages/wm.scm (evilwm, menumaker)[home-page]: Likewise.
* gnu/packages/wv.scm (wv)[home-page]: Likewise.
* gnu/packages/wxwidgets.scm (wxsvg)[home-page]: Likewise.
* gnu/packages/xdisorg.scm (mtdev, xsel)[home-page]: Likewise.
* gnu/packages/xfig.scm (xfig, transfig)[home-page]: Likewise.
* gnu/packages/xml.scm (openjade, python-pyxb, xmlstarlet, xmlrpc-c)
(opensp)[home-page]: Likewise.
* gnu/packages/xorg.scm (xf86-video-qxl)[home-page]: Likewise.
2023-02-11 19:00:00 -05:00
|
|
|
"https://linguistico.sourceforge.net/pages/dizionario_italiano.html"))))
|
2016-03-13 12:58:18 -04:00
|
|
|
|
2019-06-05 04:59:30 -04:00
|
|
|
(define-public aspell-dict-mi
|
|
|
|
(aspell-dictionary "mi" "Maori"
|
|
|
|
#:version "0.50-0"
|
2020-11-08 15:34:14 -05:00
|
|
|
#:prefix "aspell-"
|
2019-06-05 04:59:30 -04:00
|
|
|
#:sha256
|
|
|
|
(base32
|
|
|
|
"12bxplpd348yx8d2q8qvahi9dlp7qf28qmanzhziwc7np8rixvmy")))
|
|
|
|
|
2016-03-13 12:58:18 -04:00
|
|
|
(define-public aspell-dict-nl
|
|
|
|
(aspell-dictionary "nl" "Dutch"
|
|
|
|
#:version "0.50-2"
|
|
|
|
#:prefix "aspell-"
|
|
|
|
#:sha256
|
|
|
|
(base32
|
|
|
|
"0ffb87yjsh211hllpc4b9khqqrblial4pzi1h9r3v465z1yhn3j4")))
|
2016-11-21 15:08:06 -05:00
|
|
|
|
2019-06-05 05:00:46 -04:00
|
|
|
(define-public aspell-dict-nn
|
|
|
|
(aspell-dictionary "nn" "Norwegian Nynorsk"
|
|
|
|
#:version "0.50.1-1"
|
2020-11-08 15:35:21 -05:00
|
|
|
#:prefix "aspell-"
|
2019-06-05 05:00:46 -04:00
|
|
|
#:sha256
|
|
|
|
(base32
|
|
|
|
"0w2k5l5rbqpliripgqwiqixz5ghnjf7i9ggbrc4ly4vy1ia10rmc")))
|
|
|
|
|
2022-12-07 04:43:41 -05:00
|
|
|
(define-public aspell-dict-nb
|
|
|
|
(aspell-dictionary "nb" "Norwegian Bokmål"
|
2023-07-08 20:00:01 -04:00
|
|
|
#:version "0.50-2"
|
2022-12-07 04:43:41 -05:00
|
|
|
#:prefix "aspell-"
|
|
|
|
#:sha256
|
|
|
|
(base32
|
|
|
|
"1xvns7dwx2sc0msldj7r2hv0426913rg3dpnkxlrvnsyrxzjpbpc")))
|
|
|
|
|
2020-04-29 10:49:36 -04:00
|
|
|
(define-public aspell-dict-pl
|
|
|
|
(aspell-dictionary "pl" "Polish"
|
|
|
|
#:version "0.51-0"
|
2020-11-08 15:36:32 -05:00
|
|
|
#:prefix "aspell-"
|
2020-04-29 10:49:36 -04:00
|
|
|
#:sha256
|
|
|
|
(base32
|
|
|
|
"1a3ccji6k5gys7l3ilr2lh5pzxgzb7ipc5vb737svl6nqgdy8757")))
|
|
|
|
|
2017-12-09 14:42:47 -05:00
|
|
|
(define-public aspell-dict-pt-br
|
2019-06-06 01:06:56 -04:00
|
|
|
(aspell-dictionary "pt_BR" "Brazilian Portuguese"
|
2019-10-16 02:25:58 -04:00
|
|
|
#:version "20131030-12-0"
|
2016-11-21 15:08:06 -05:00
|
|
|
#:sha256
|
|
|
|
(base32
|
2019-10-16 02:25:58 -04:00
|
|
|
"1xqlpk21s93c6blkdnpk7l62q9fxjvzdv2x86chl8p2x1gdrj3gb")))
|
2017-12-09 14:42:47 -05:00
|
|
|
|
2019-06-05 05:01:35 -04:00
|
|
|
(define-public aspell-dict-pt-pt
|
2019-06-06 01:06:56 -04:00
|
|
|
(aspell-dictionary "pt_PT" "Portuguese"
|
2019-10-16 02:26:59 -04:00
|
|
|
#:version "20190329-1-0"
|
2019-06-05 05:01:35 -04:00
|
|
|
#:sha256
|
|
|
|
(base32
|
2019-10-16 02:26:59 -04:00
|
|
|
"0ld0d0ily4jqifjfsxfv4shbicz6ymm2gk56fq9gbzra1j4qnw75")))
|
2019-06-05 05:01:35 -04:00
|
|
|
|
2017-12-09 14:42:47 -05:00
|
|
|
(define-public aspell-dict-ru
|
|
|
|
(aspell-dictionary "ru" "Russian"
|
|
|
|
#:version "0.99f7-1"
|
|
|
|
#:sha256
|
|
|
|
(base32
|
|
|
|
"0ip6nq43hcr7vvzbv4lwwmlwgfa60hrhsldh9xy3zg2prv6bcaaw")))
|
2016-12-04 05:24:26 -05:00
|
|
|
|
2020-02-02 09:43:05 -05:00
|
|
|
(define-public aspell-dict-sl
|
|
|
|
(aspell-dictionary "sl" "Slovenian"
|
|
|
|
#:version "0.50-0"
|
|
|
|
#:prefix "aspell-"
|
|
|
|
#:sha256
|
|
|
|
(base32
|
|
|
|
"1l9kc5g35flq8kw9jhn2n0bjb4sipjs4qkqzgggs438kywkx2rp5")))
|
|
|
|
|
2016-12-04 05:24:26 -05:00
|
|
|
(define-public aspell-dict-sv
|
|
|
|
(aspell-dictionary "sv" "Swedish"
|
|
|
|
#:version "0.51-0"
|
|
|
|
#:prefix "aspell-"
|
|
|
|
#:sha256
|
|
|
|
(base32
|
|
|
|
"02jwkjhr32kvyibnyzgx3smbnm576jwdzg3avdf6zxwckhy5fw4v")))
|
2016-12-15 16:02:27 -05:00
|
|
|
|
2019-06-05 05:02:36 -04:00
|
|
|
(define-public aspell-dict-uk
|
|
|
|
(aspell-dictionary "uk" "Ukrainian"
|
|
|
|
#:version "1.4.0-0"
|
|
|
|
#:sha256
|
|
|
|
(base32
|
|
|
|
"137i4njvnslab6l4s291s11xijr5jsy75lbdph32f9y183lagy9m")))
|
|
|
|
|
2021-04-27 15:33:11 -04:00
|
|
|
(define-public aspell-dict-ro
|
|
|
|
(aspell-dictionary "ro" "Romanian"
|
|
|
|
#:version "3.3-2"
|
|
|
|
#:prefix "aspell5-"
|
|
|
|
#:sha256
|
|
|
|
(base32
|
|
|
|
"0gb8j9iy1acdl11jq76idgc2lbc1rq3w04favn8cyh55d1v8phsk")))
|
|
|
|
|
2020-07-28 07:36:09 -04:00
|
|
|
(define-public ispell
|
|
|
|
(package
|
|
|
|
(name "ispell")
|
2023-11-15 16:09:35 -05:00
|
|
|
(version "3.4.06")
|
2020-07-28 07:36:09 -04:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "https://www.cs.hmc.edu/~geoff/tars/ispell-"
|
|
|
|
version ".tar.gz"))
|
|
|
|
(sha256
|
2023-11-15 16:09:35 -05:00
|
|
|
(base32 "19pbhg3pbnykkk9hla2kfhfanm7wcdja2qria365l1y8shridj8p"))))
|
2020-07-28 07:36:09 -04:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:parallel-build? #f
|
|
|
|
#:tests? #f ; no tests
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(replace 'configure
|
|
|
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
|
|
|
;; Based on local.h.linux
|
|
|
|
(let* ((grep (assoc-ref inputs "grep"))
|
|
|
|
(out (assoc-ref outputs "out")))
|
|
|
|
(call-with-output-file "local.h"
|
|
|
|
(lambda (port)
|
|
|
|
(format port "#define MINIMENU~%")
|
|
|
|
(format port "#define USG~%")
|
|
|
|
(format port "#define HAS_RENAME~%")
|
|
|
|
(format port "#define CC \"gcc\"~%")
|
|
|
|
(format port "#define POUNDBANG \"#!~a\"~%" (which "sh"))
|
|
|
|
(format port "#define EGREPCMD \"~a/bin/grep -Ei\"~%" grep)
|
|
|
|
(format port "#define BINDIR \"~a/bin\"~%" out)
|
|
|
|
(format port "#define LIBDIR \"~a/lib/ispell\"~%" out)
|
|
|
|
(format port "#define MAN1DIR \"~a/share/man/man1\"~%" out)
|
2022-04-30 20:00:02 -04:00
|
|
|
(format port "#define MAN45DIR \"~a/share/man/man5\"~%" out)))))))))
|
2020-07-28 07:36:09 -04:00
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
(list grep ncurses))
|
2020-07-28 07:36:09 -04:00
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
(list bison))
|
2020-07-28 07:36:09 -04:00
|
|
|
(synopsis "Interactive spell-checking tool for Unix")
|
|
|
|
(description "Ispell is an interactive spell-checking tool supporting many
|
|
|
|
European languages.")
|
|
|
|
(home-page "https://www.cs.hmc.edu/~geoff/ispell.html")
|
|
|
|
(license bsd-3)))
|