[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
22/277: gnu: Add nuspell.
From: |
guix-commits |
Subject: |
22/277: gnu: Add nuspell. |
Date: |
Thu, 6 Aug 2020 17:02:38 -0400 (EDT) |
dannym pushed a commit to branch wip-desktop
in repository guix.
commit d9b8f2250c4df21a70e54c465c14cddacd205782
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")
- branch wip-desktop created (now 3158807), guix-commits, 2020/08/06
- 09/277: gnu: adwaita-icon-theme: Update to 3.36.1., guix-commits, 2020/08/06
- 03/277: gnu: Add libglib-testing., guix-commits, 2020/08/06
- 05/277: gnu: Add portablexdr., guix-commits, 2020/08/06
- 04/277: gnu: Add malcontent., guix-commits, 2020/08/06
- 06/277: gnu: Add libxmlb., guix-commits, 2020/08/06
- 01/277: gnu: Add krb5-auth-dialog., guix-commits, 2020/08/06
- 10/277: gnu: appstream-glib: Update package definition., guix-commits, 2020/08/06
- 22/277: gnu: Add nuspell.,
guix-commits <=
- 11/277: gnu: at-spi2-core: Update package definition., guix-commits, 2020/08/06
- 19/277: gnu: cogl: Update package definition., guix-commits, 2020/08/06
- 24/277: gnu: enchant: Update package definition., guix-commits, 2020/08/06
- 18/277: gnu: clutter-gst: Update package definition., guix-commits, 2020/08/06
- 21/277: gnu: Add ronn., guix-commits, 2020/08/06
- 25/277: gnu: Add presage., guix-commits, 2020/08/06
- 26/277: gnu: fcitx: Update package definition., guix-commits, 2020/08/06
- 08/277: gnu: Add gnome-photos., guix-commits, 2020/08/06
- 02/277: gnu: Add tepl., guix-commits, 2020/08/06
- 07/277: gnu: Add gnome-music., guix-commits, 2020/08/06