Skip to content
Snippets Groups Projects
Unverified Commit 10eeb236 authored by Efraim Flashner's avatar Efraim Flashner
Browse files

gnu: Add rust-strsim-0.8.

* gnu/packages/rust-cbindgen.scm (rust-strsim-0.8): New hidden variable.
parent 1a7e2aa8
No related branches found
No related tags found
No related merge requests found
...@@ -690,3 +690,24 @@ (define rust-serde-json-1.0 ...@@ -690,3 +690,24 @@ (define rust-serde-json-1.0
"This package provides a JSON serialization file format.") "This package provides a JSON serialization file format.")
(properties '((hidden? . #t))) (properties '((hidden? . #t)))
(license (list license:expat license:asl2.0)))) (license (list license:expat license:asl2.0))))
(define rust-strsim-0.8
(package
(name "rust-strsim")
(version "0.8.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "strsim" version))
(file-name (string-append name "-" version ".crate"))
(sha256
(base32
"0sjsm7hrvjdifz661pjxq5w4hf190hx53fra8dfvamacvff139cf"))))
(build-system cargo-build-system)
(home-page "https://github.com/dguo/strsim-rs")
(synopsis "Rust implementations of string similarity metrics")
(description "This crate includes implementations of string similarity
metrics. It includes Hamming, Levenshtein, OSA, Damerau-Levenshtein, Jaro,
and Jaro-Winkler.")
(properties '((hidden? . #t)))
(license license:expat)))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment