diff options
| author | Efraim Flashner <efraim@flashner.co.il> | 2024-03-17 14:30:21 +0200 |
|---|---|---|
| committer | Efraim Flashner <efraim@flashner.co.il> | 2024-07-19 00:42:39 +0300 |
| commit | 3024ecaea7bf18f1f9335cace1a582e6f029f6b2 (patch) | |
| tree | 10a5b92c68011397f0a14f7217f4fade2210bbe2 | |
| parent | 6a3d61acbf203bb3483d1ed9b18dc8268dea1425 (diff) | |
gnu: Add rust-path-clean-1.
* gnu/packages/crates-io.scm (rust-path-clean-1): New variable.
(rust-path-clean-0.1): Inherit from rust-path-clean-1.
Change-Id: I2add9d32861b6ac62773ca3350084187e968f41f
| -rw-r--r-- | gnu/packages/crates-io.scm | 24 |
1 files changed, 20 insertions, 4 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 5284e796fd..b7a2af0020 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -48329,25 +48329,41 @@ Format (MCF).") Rust with reasonable performance.") (license (list license:expat license:asl2.0)))) -(define-public rust-path-clean-0.1 +(define-public rust-path-clean-1 (package (name "rust-path-clean") - (version "0.1.0") + (version "1.0.1") (source (origin (method url-fetch) (uri (crate-uri "path-clean" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 - "1pcgqxw0mgg3ha5hi5xkjhyjf488bw5rw1g3qlr9awbq4szh3fpc")))) + (base32 "1vzwcrlz39rd94l89rppvkbsn7dvng449f1bnkyk3ayp43y9ld8p")))) (build-system cargo-build-system) + (arguments + `(#:cargo-development-inputs (("rust-criterion" ,rust-criterion-0.2)))) (home-page "https://github.com/danreeves/path-clean") (synopsis "Rust implementation of cleanname or path.Clean") (description "This package provides a Rust implementation of cleanname or path.Clean.") (license (list license:expat license:asl2.0)))) +(define-public rust-path-clean-0.1 + (package + (inherit rust-path-clean-1) + (name "rust-path-clean") + (version "0.1.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "path-clean" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1pcgqxw0mgg3ha5hi5xkjhyjf488bw5rw1g3qlr9awbq4szh3fpc")))) + (arguments '()))) + (define-public rust-path-slash-0.2 (package (name "rust-path-slash") |
