me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-levenshtein-1.

* gnu/packages/crates-io.scm (rust-levenshtein-1): New variable.

Change-Id: I111dcc2d20ebbe6073999088dd5d013f057c0f75
master
Efraim Flashner 2023-12-27 09:07:52 +02:00
parent 9b577b3b0a
commit d33dd0380b
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 18 additions and 0 deletions

View File

@ -41406,6 +41406,24 @@ requires non-const function calls to be computed.")
sending emails from Rust applications.")
(license license:expat)))
(define-public rust-levenshtein-1
(package
(name "rust-levenshtein")
(version "1.0.5")
(source
(origin
(method url-fetch)
(uri (crate-uri "levenshtein" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0q0pa1prsjk3v28xkas5rf30ng9816mxpr2n3xls65dmgawss4yv"))))
(build-system cargo-build-system)
(home-page "https://github.com/wooorm/levenshtein-rs")
(synopsis "Levenshtein algorithm")
(description
"This crate provides an implementation of the levenshtein algorithm in rust.")
(license license:expat)))
(define-public rust-lewton-0.10
(package
(name "rust-lewton")