me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-pdqselect-0.1.

* gnu/packages/crates-io.scm (rust-pdqselect-0.1): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
Domagoj Stolfa 2021-07-11 15:55:33 +01:00 committed by Efraim Flashner
parent 5346e136fa
commit b12fbd1b8a
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 21 additions and 0 deletions

View File

@ -31225,6 +31225,27 @@ in pure Rust.")
"This package provides FFI bindings for PDCurses implementation.")
(license license:expat)))
(define-public rust-pdqselect-0.1
(package
(name "rust-pdqselect")
(version "0.1.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "pdqselect" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"09vwywzavhgqgr3vi2ycgv2nd0067jirv36fb3jvp860xikigjaf"))))
(build-system cargo-build-system)
(home-page "https://crates.io/crates/pdqselect")
(synopsis "Selects the kth smallest element of a slice")
(description
"Selects the kth smallest element of a slice, based on Orson Peters's
pdqsort.")
(license (list license:asl2.0 license:expat))))
(define-public rust-pear-0.1
(package
(name "rust-pear")