diff options
author | Jordan Moore <lockbox@struct.foo> | 2024-09-18 07:05:43 -0400 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-11-28 11:04:59 +0200 |
commit | 953ef71de7ca71d5de0f88ea3d2e282f67288310 (patch) | |
tree | 9cf1a3533a163e22a65d0ce31cfe0565d9bf2031 | |
parent | 9f7bc8976f89d832d1a17d623f22c8d50b1e2736 (diff) | |
download | guix-953ef71de7ca71d5de0f88ea3d2e282f67288310.tar.gz guix-953ef71de7ca71d5de0f88ea3d2e282f67288310.zip |
gnu: Add rust-vsort-0.2.
* gnu/packages/crates-io.scm (rust-vsort-0.2): New variable.
Change-Id: Ia6098e31b5574ca48d6eb33f5ed52fa019627edd
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
-rw-r--r-- | gnu/packages/crates-io.scm | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 05ea58f637..0dadda46ce 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -90796,6 +90796,23 @@ updated when the crate version changes.") (("rust-rand" ,rust-rand-0.8) ("rust-sha2" ,rust-sha2-0.10)))))) +(define-public rust-vsort-0.2 + (package + (name "rust-vsort") + (version "0.2.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "vsort" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1y7b0x18a2mpn7hk3qfybl2ksy08klwl3bps4yxsd7pr90dilcqi")))) + (build-system cargo-build-system) + (home-page "https://github.com/juansc/vsort/") + (synopsis "GNU Version Sort Rust implementation") + (description "This package provides GNU Version Sort Rust implementation.") + (license license:expat))) + (define-public rust-vswhom-0.1 (package (name "rust-vswhom") |