diff options
author | Herman Rimm <herman@rimm.ee> | 2024-02-18 22:09:17 +0100 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-07-19 00:43:50 +0300 |
commit | 7758ad75f5d76207da700b9ebfbb7e1e85fb4d18 (patch) | |
tree | 35c56ade2527a39ecaf98fb769f2dd7ded1dabf5 | |
parent | 56bfaacf2f9cb04731a736dbb03125570b3e6d00 (diff) | |
download | guix-7758ad75f5d76207da700b9ebfbb7e1e85fb4d18.tar.gz guix-7758ad75f5d76207da700b9ebfbb7e1e85fb4d18.zip |
gnu: Add rust-web-time-1.
* gnu/packages/crates-io.scm (rust-web-time-1): Add variable.
(rust-web-time-0.2): Inherit from rust-web-time-1.
Change-Id: I8e3d9270bb06baa051bb9eff8a7a507c5ac4a9ad
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
-rw-r--r-- | gnu/packages/crates-io.scm | 39 |
1 files changed, 34 insertions, 5 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index dc86574eec..cdf7b83cb3 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -84209,21 +84209,22 @@ for terminal and other window-less applications.") "Bindings for all Web APIs, a procedurally generated crate from WebIDL.") (license (list license:expat license:asl2.0)))) -(define-public rust-web-time-0.2 +(define-public rust-web-time-1 (package (name "rust-web-time") - (version "0.2.4") + (version "1.1.0") (source (origin (method url-fetch) (uri (crate-uri "web-time" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "1q6gk0nkwbfz30g1pz8g52mq00zjx7m5im36k3474aw73jdh8c5a")))) + (base32 "1fx05yqx83dhx628wb70fyy10yjfq1jpl20qfqhdkymi13rq0ras")))) (build-system cargo-build-system) (arguments - `(#:tests? #f ; Not all files included. + `(#:tests? #f ; TODO: check if not all files included. #:cargo-inputs (("rust-js-sys" ,rust-js-sys-0.3) + ("rust-serde" ,rust-serde-1) ("rust-wasm-bindgen" ,rust-wasm-bindgen-0.2)) #:cargo-development-inputs (("rust-futures-channel" ,rust-futures-channel-0.3) @@ -84231,15 +84232,43 @@ for terminal and other window-less applications.") ("rust-getrandom" ,rust-getrandom-0.2) ("rust-pollster" ,rust-pollster-0.3) ("rust-rand" ,rust-rand-0.8) + ("rust-serde-json" ,rust-serde-json-1) ("rust-wasm-bindgen-futures" ,rust-wasm-bindgen-futures-0.4) ("rust-wasm-bindgen-test" ,rust-wasm-bindgen-test-0.3) ("rust-web-sys" ,rust-web-sys-0.3)))) (home-page "https://github.com/daxpedda/web-time") (synopsis "Drop-in replacement for std::time for Wasm in browsers") (description - "Drop-in replacement for @code{std::time} for Wasm in browsers.") + "This package provides a drop-in replacement for @code{std::time} +for Wasm in browsers.") (license (list license:expat license:asl2.0)))) +(define-public rust-web-time-0.2 + (package + (inherit rust-web-time-1) + (name "rust-web-time") + (version "0.2.4") + (source + (origin + (method url-fetch) + (uri (crate-uri "web-time" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1q6gk0nkwbfz30g1pz8g52mq00zjx7m5im36k3474aw73jdh8c5a")))) + (arguments + `(#:tests? #f ; TODO: check if not all files included. + #:cargo-inputs (("rust-js-sys" ,rust-js-sys-0.3) + ("rust-wasm-bindgen" ,rust-wasm-bindgen-0.2)) + #:cargo-development-inputs + (("rust-futures-channel" ,rust-futures-channel-0.3) + ("rust-futures-util" ,rust-futures-util-0.3) + ("rust-getrandom" ,rust-getrandom-0.2) + ("rust-pollster" ,rust-pollster-0.3) + ("rust-rand" ,rust-rand-0.8) + ("rust-wasm-bindgen-futures" ,rust-wasm-bindgen-futures-0.4) + ("rust-wasm-bindgen-test" ,rust-wasm-bindgen-test-0.3) + ("rust-web-sys" ,rust-web-sys-0.3)))))) + (define-public rust-webbrowser-0.8 (package (name "rust-webbrowser") |