diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-10-25 09:55:25 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-11-28 07:58:41 +0200 |
commit | 0f14b9c613da2c9ddb85fede6e5d8a40c7c36620 (patch) | |
tree | 5685a73efbe422364c4ef7a352233419e1008049 | |
parent | 5b83710671912df02e052bf0095b5a0bbe103498 (diff) | |
download | guix-0f14b9c613da2c9ddb85fede6e5d8a40c7c36620.tar.gz guix-0f14b9c613da2c9ddb85fede6e5d8a40c7c36620.zip |
gnu: Add rust-open-3.
* gnu/packages/crates-io.scm (rust-open-3): New variable.
(rust-open-2): Inherit from rust-open-3.
Change-Id: I03bcb01e24960b97fa6b8345805c44ac432fa728
-rw-r--r-- | gnu/packages/crates-io.scm | 30 |
1 files changed, 23 insertions, 7 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 63eef347bd..893d19ed5f 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -49027,23 +49027,21 @@ contents.") (base32 "02942l2gc7w5r4js7i9063x99szic5mzzk1055j83v4diqpbpxck")))))) -(define-public rust-open-2 +(define-public rust-open-3 (package (name "rust-open") - (version "2.0.2") + (version "3.2.0") (source (origin (method url-fetch) (uri (crate-uri "open" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "1dq9c6dgq7iv5kvqfk8gvkfq34j5pdinfcs1hbdd4x6i62vf8vhp")))) + (base32 "1y3nhpgh444ns5vqy87jbcnlryqmw62akyi85k2a0m3akq1w0y10")))) (build-system cargo-build-system) (arguments - `(#:skip-build? #t - #:cargo-inputs - (("rust-pathdiff" ,rust-pathdiff-0.2) - ("rust-winapi" ,rust-winapi-0.3)))) + `(#:cargo-inputs (("rust-pathdiff" ,rust-pathdiff-0.2) + ("rust-windows-sys" ,rust-windows-sys-0.42)))) (home-page "https://github.com/Byron/open-rs") (synopsis "Open a path or URL using the program configured on the system") (description @@ -49051,6 +49049,24 @@ contents.") the system.") (license license:expat))) +(define-public rust-open-2 + (package + (inherit rust-open-3) + (name "rust-open") + (version "2.0.2") + (source + (origin + (method url-fetch) + (uri (crate-uri "open" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1dq9c6dgq7iv5kvqfk8gvkfq34j5pdinfcs1hbdd4x6i62vf8vhp")))) + (arguments + `(#:skip-build? #t + #:cargo-inputs + (("rust-pathdiff" ,rust-pathdiff-0.2) + ("rust-winapi" ,rust-winapi-0.3)))))) + (define-public rust-open-1 (package (inherit rust-open-2) |