[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
23/100: gnu: Add nuspell.
From: |
guix-commits |
Subject: |
23/100: gnu: Add nuspell. |
Date: |
Wed, 8 Jul 2020 03:36:38 -0400 (EDT) |
dannym pushed a commit to branch wip-desktop
in repository guix.
commit c5fca92c86afc0c1b6514ddcc753f4c399d519a6
Author: Raghav Gururajan <raghavgururajan@disroot.org>
AuthorDate: Sat May 30 15:28:31 2020 -0400
gnu: Add nuspell.
* gnu/packages/enchant.scm (nuspell): New variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
---
gnu/packages/enchant.scm | 43 +++++++++++++++++++++++++++++++++++++++++++
1 file changed, 43 insertions(+)
diff --git a/gnu/packages/enchant.scm b/gnu/packages/enchant.scm
index ff4fc03..4f582f1 100644
--- a/gnu/packages/enchant.scm
+++ b/gnu/packages/enchant.scm
@@ -22,17 +22,60 @@
(define-module (gnu packages enchant)
#:use-module (gnu packages)
#:use-module (gnu packages aspell)
+ #:use-module (gnu packages boost)
#:use-module (gnu packages check)
#:use-module (gnu packages glib)
+ #:use-module (gnu packages icu4c)
#:use-module (gnu packages libreoffice)
+ #:use-module (gnu packages man)
+ #:use-module (gnu packages perl)
#:use-module (gnu packages pkg-config)
+ #:use-module (gnu packages version-control)
#:use-module (guix packages)
+ #:use-module (guix git-download)
#:use-module (guix download)
+ #:use-module (guix build-system cmake)
#:use-module (guix build-system gnu)
#:use-module (guix build-system python)
#:use-module (guix licenses)
#:use-module (srfi srfi-1))
+(define-public nuspell
+ (package
+ (name "nuspell")
+ (version "3.1.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri
+ (git-reference
+ (url "https://github.com/nuspell/nuspell.git")
+ (commit
+ (string-append "v" version))))
+ (file-name
+ (git-file-name name version))
+ (sha256
+ (base32 "18zz3rdzlb3knzsd98vw8cfyb3iq0ilipnlz7rz10zgb5ail73s2"))))
+ (build-system cmake-build-system)
+ (native-inputs
+ `(("catch" ,catch-framework2)
+ ("git" ,git-minimal)
+ ("perl" ,perl)
+ ;;FIX-ME: Building with ronn fails.
+ ;;("ronn" ,ronn)
+ ("pkg-config" ,pkg-config)))
+ (inputs
+ `(("boost" ,boost)))
+ (propagated-inputs
+ `(("icu4c" ,icu4c)))
+ (synopsis "Fast and safe spellchecking C++ library")
+ (description "Nuspell is a fast and safe spelling checker software
+program. It is designed for languages with rich morphology and complex word
+compounding. Nuspell is written in modern C++ and it supports Hunspell
+dictionaries.")
+ (home-page "https://nuspell.github.io/")
+ (license lgpl3+)))
+
(define-public enchant
(package
(name "enchant")
- 11/100: gnu: at-spi2-core: Update package definition., (continued)
- 11/100: gnu: at-spi2-core: Update package definition., guix-commits, 2020/07/08
- 14/100: gnu: google-brotli: Update package definition., guix-commits, 2020/07/08
- 17/100: gnu: clutter-gtk: Update package definition., guix-commits, 2020/07/08
- 16/100: gnu: clutter: Update to 1.26.4., guix-commits, 2020/07/08
- 13/100: gnu: atk: Update to 2.36.0., guix-commits, 2020/07/08
- 21/100: gnu: catch-framework2: Update to 2.3.0., guix-commits, 2020/07/08
- 22/100: gnu: Add ronn., guix-commits, 2020/07/08
- 30/100: gnu: gdk-pixbuf: Update package definition., guix-commits, 2020/07/08
- 18/100: gnu: clutter-gst: Update package definition., guix-commits, 2020/07/08
- 20/100: gnu: dconf: Update to 0.36.0., guix-commits, 2020/07/08
- 23/100: gnu: Add nuspell.,
guix-commits <=
- 26/100: gnu: Add presage., guix-commits, 2020/07/08
- 27/100: gnu: fcitx: Update package definition., guix-commits, 2020/07/08
- 28/100: gnu: gcab: Update to 1.4., guix-commits, 2020/07/08
- 29/100: gnu: gcr: Update to 3.36.0., guix-commits, 2020/07/08
- 31/100: gnu: gdk-pixbuf+svg: Update package definition., guix-commits, 2020/07/08
- 35/100: gnu: glib-networking: Update to 2.62.4., guix-commits, 2020/07/08
- 19/100: gnu: cogl: Update package definition., guix-commits, 2020/07/08
- 24/100: gnu: enchant-1.6: Update package definition., guix-commits, 2020/07/08
- 25/100: gnu: enchant: Update package definition., guix-commits, 2020/07/08
- 33/100: gnu: Add sysprof., guix-commits, 2020/07/08