[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
12/14: gnu: Added chicken-agrep.
From: |
guix-commits |
Subject: |
12/14: gnu: Added chicken-agrep. |
Date: |
Thu, 3 Dec 2020 10:25:23 -0500 (EST) |
civodul pushed a commit to branch master
in repository guix.
commit eee037ec877b3674ce2c3198a58c8cd97c972df7
Author: raingloom <raingloom@riseup.net>
AuthorDate: Tue Oct 13 09:54:39 2020 +0200
gnu: Added chicken-agrep.
* gnu/packages/chicken.scm (chicken-agrep): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/chicken.scm | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/gnu/packages/chicken.scm b/gnu/packages/chicken.scm
index a8b10c8..866ba8a 100644
--- a/gnu/packages/chicken.scm
+++ b/gnu/packages/chicken.scm
@@ -165,6 +165,38 @@ CHICKEN Scheme, along with
@uref{https://srfi.schemers.org/srfi-90/srfi-90.html, SRFI-90} extensions.")
(license license:bsd-3)))
+(define-public chicken-agrep
+ (package
+ (name "chicken-agrep")
+ (version "1.7")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/iraikov/chicken-agrep")
+ (commit version)))
+ (file-name (string-append "chicken-agrep-" version "-checkout"))
+ (sha256
+ (base32
+ "0z05x7f154n9bgmainrsmncf5i6dil43r9ymr3rdgwbg4wnxmz4s"))))
+ ;; TODO do we really have to make these propagated?
+ ;; I don't know Chicken's module system well enough to tell
+ (propagated-inputs
+ `(("chicken-datatype" ,chicken-datatype)
+ ("chicken-srfi-1" ,chicken-srfi-1)
+ ("chicken-srfi-14" ,chicken-srfi-14)))
+ (inputs
+ `(("chicken-test" ,chicken-test)))
+ (build-system chicken-build-system)
+ (arguments '(#:egg-name "agrep"))
+ (synopsis "Approximate string matching library")
+ (home-page "https://wiki.call-cc.org/eggref/5/agrep")
+ (description
+ "This library implements the Wu-Manber algorithm for approximate string
+searching with errors, popularized by the agrep Unix command and the glimpse
+file indexing tool.")
+ (license license:gpl3+)))
+
(define-public chicken-datatype
(package
(name "chicken-datatype")
- 13/14: doc: Tweak wording of 'chicken-build-system' material., (continued)
- 13/14: doc: Tweak wording of 'chicken-build-system' material., guix-commits, 2020/12/03
- 09/14: gnu: Add chicken-iset., guix-commits, 2020/12/03
- 11/14: gnu: Add chicken-srfi-14., guix-commits, 2020/12/03
- 01/14: gnu: guile-semver: Switch to Guile 3.0., guix-commits, 2020/12/03
- 02/14: self: Factorize package dependency enumeration., guix-commits, 2020/12/03
- 06/14: gnu: Add chicken-test., guix-commits, 2020/12/03
- 07/14: gnu: Add chicken-srfi-1., guix-commits, 2020/12/03
- 14/14: nls: Update 'fr' translation of the manual., guix-commits, 2020/12/03
- 05/14: gnu: Use qualified license names in chicken.scm instead of selective import., guix-commits, 2020/12/03
- 10/14: gnu: Add chicken-datatype., guix-commits, 2020/12/03
- 12/14: gnu: Added chicken-agrep.,
guix-commits <=
- 03/14: gnu: chicken: Add 'CHICKEN_REPOSITORY_PATH' search path spec., guix-commits, 2020/12/03