gnu: Add rust-nucleo-0.5.

* gnu/packages/crates-io.scm (rust-nucleo-0.5): New variable.

Change-Id: I383c8c5ee7ca72f762a5bde9af9691fc5032835b
Signed-off-by: Steve George <steve@futurile.net>
This commit is contained in:
Alex Bosco 2025-03-08 13:16:27 +00:00 committed by Hilton Chain
parent 98420418ac
commit c93aadc982
No known key found for this signature in database
GPG key ID: ACC66D09CA528292

View file

@ -51285,8 +51285,31 @@ framework.")
(description "Types and traits for working with bytes (bytes crate fork)")
(license license:expat)))
(define-public rust-nucleo-0.5
(package
(name "rust-nucleo")
(version "0.5.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "nucleo" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1m1rq0cp02hk31z7jsn2inqcpy9a1j8gfvxcqm32c74jji6ayqjj"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs (("rust-nucleo-matcher" ,rust-nucleo-matcher-0.3)
("rust-parking-lot" ,rust-parking-lot-0.12)
("rust-rayon" ,rust-rayon-1))))
(home-page "https://github.com/helix-editor/nucleo")
(synopsis "Plug and play high performance fuzzy matcher")
(description
"This package provides plug and play high performance fuzzy matcher.")
(license license:mpl2.0)))
(define-public rust-nucleo-0.2
(package
(inherit rust-nucleo-0.5)
(name "rust-nucleo")
(version "0.2.1")
(source
@ -51296,16 +51319,10 @@ framework.")
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1wzx32bz4n68dcd3yw57195sz49hdhv9b75jikr5qiyfpks32lxf"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs (("rust-nucleo-matcher" ,rust-nucleo-matcher-0.2)
("rust-parking-lot" ,rust-parking-lot-0.12)
("rust-rayon" ,rust-rayon-1))))
(home-page "https://github.com/helix-editor/nucleo")
(synopsis "Plug and play high performance fuzzy matcher")
(description
"This package provides plug and play high performance fuzzy matcher.")
(license license:mpl2.0)))
("rust-rayon" ,rust-rayon-1))))))
(define-public rust-nucleo-matcher-0.3
(package