mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: hunspell: Add Greek dictionary.
* gnu/packages/hunspell.scm (hunspell-dict-el): New variable. Change-Id: I5b534862030a60e09f2c4a741a723fc2467b20ba Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
04b6450c88
commit
2db3b5d6b8
1 changed files with 35 additions and 0 deletions
|
@ -266,6 +266,41 @@ (define-public hunspell-dict-hu
|
||||||
(home-page "https://magyarispell.sourceforge.net/")
|
(home-page "https://magyarispell.sourceforge.net/")
|
||||||
(license (list license:gpl2 license:gpl3)))))
|
(license (list license:gpl2 license:gpl3)))))
|
||||||
|
|
||||||
|
(define-public hunspell-dict-el
|
||||||
|
(let ((commit "8e799911aede4e2c340d1b5a67a07f8e22ab9c8e"))
|
||||||
|
(package
|
||||||
|
(name "hunspell-dict-el")
|
||||||
|
(version "0.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://git.thanosapollo.org/hunspell-dict-el")
|
||||||
|
(commit commit)))
|
||||||
|
(sha256
|
||||||
|
(base32 "0z9nyfy50c0bjvvm42xwd3npjpp07a9slm3gfgvxanyqm7djrmb1"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(delete 'build)
|
||||||
|
(delete 'configure)
|
||||||
|
(replace 'install
|
||||||
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
|
(let* ((out (assoc-ref outputs "out"))
|
||||||
|
(share (string-append out "/share/hunspell/")))
|
||||||
|
(install-file "el_GR.aff" share)
|
||||||
|
(install-file "el_GR.dic" share)
|
||||||
|
#t))))
|
||||||
|
#:tests? #f))
|
||||||
|
(native-inputs
|
||||||
|
(list hunspell ispell perl))
|
||||||
|
(synopsis "Hunspell Greek/Hellenic dictionary")
|
||||||
|
(description "This package provides a dictionary for the Hunspell
|
||||||
|
spell-checking library.")
|
||||||
|
(home-page "https://git.thanosapollo.org/hunspell-dict-el/")
|
||||||
|
(license (list license:gpl2 license:gpl3)))))
|
||||||
|
|
||||||
(define* (hunspell-dictionary dict-name full-name #:key synopsis home-page license)
|
(define* (hunspell-dictionary dict-name full-name #:key synopsis home-page license)
|
||||||
(package
|
(package
|
||||||
(name (string-append
|
(name (string-append
|
||||||
|
|
Loading…
Reference in a new issue