summaryrefslogtreecommitdiff
path: root/gnu/packages/cpp.scm
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-10-25 18:48:13 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-10-29 00:05:48 +0000
commit4db3fff7fe4d344422e47e5491b9c2c0e407ff20 (patch)
treebd160883f114537623e1484567d991b0923d8e8f /gnu/packages/cpp.scm
parentbebb4ca6d52d94e07cee18586edbb693b34e2336 (diff)
gnu: rapidfuzz-cpp: Update to 3.3.3.
* gnu/packages/cpp.scm (rapidfuzz-cpp): Update to 3.3.3. [source, description]: Improve style. Change-Id: I806ef30879fa9a9d042519a6e80b1c6c3add7054 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/cpp.scm')
-rw-r--r--gnu/packages/cpp.scm25
1 files changed, 13 insertions, 12 deletions
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm
index 7f124ed095c..d97522c2f61 100644
--- a/gnu/packages/cpp.scm
+++ b/gnu/packages/cpp.scm
@@ -1696,16 +1696,16 @@ library.")
(define-public rapidfuzz-cpp
(package
(name "rapidfuzz-cpp")
- (version "3.3.2")
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/rapidfuzz/rapidfuzz-cpp")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "1im0k0pjg1fnzsixl5k7j706kwwdhkw15a9hpkyr8yqbmmbg9q82"))))
+ (version "3.3.3")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/rapidfuzz/rapidfuzz-cpp")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1ma2hpp4c53fwjb8yi7rpkgivhsw7bkd8agw3sw5zwdlwsks88xv"))))
(build-system cmake-build-system)
(arguments
(list
@@ -1713,8 +1713,9 @@ library.")
(native-inputs (list catch2))
(home-page "https://github.com/rapidfuzz/rapidfuzz-cpp")
(synopsis "Rapid fuzzy string matching using the Levenshtein Distance")
- (description "RapidFuzz is a fast string matching library for Python and
-C++, which is using the string similarity calculations from FuzzyWuzzy.")
+ (description
+ "RapidFuzz is a fast string matching library for Python and C++, which is
+using the string similarity calculations from FuzzyWuzzy.")
(license license:expat)))
(define-public cpplint