gnu: Add rust-console-log-1.
* gnu/packages/crates-io.scm (rust-console-log-1): New variable. (rust-console-log-0.2): Inherit from rust-console-log-1. Change-Id: I907d1ec8c34901339a02a508b0a573c0968d3b21master
parent
3c722d505c
commit
86415b84e1
|
@ -14018,8 +14018,32 @@ this to write Rust programs which can be customized by end users easily.")
|
|||
that logs panics to @code{console.error}.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-console-log-1
|
||||
(package
|
||||
(name "rust-console-log")
|
||||
(version "1.0.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "console_log" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "03rwzvpg384y68j6hxm4h1bhzi7xcc5jdari8hxlvgzdwi0fv2my"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs (("rust-log" ,rust-log-0.4)
|
||||
("rust-wasm-bindgen" ,rust-wasm-bindgen-0.2)
|
||||
("rust-web-sys" ,rust-web-sys-0.3))))
|
||||
(home-page "https://github.com/iamcodemaker/console_log")
|
||||
(synopsis "Route Rust log messages to the browser's console")
|
||||
(description
|
||||
"This package provides a logging facility that routes Rust log messages to
|
||||
the browser's console.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-console-log-0.2
|
||||
(package
|
||||
(inherit rust-console-log-1)
|
||||
(name "rust-console-log")
|
||||
(version "0.2.0")
|
||||
(source (origin
|
||||
|
@ -14029,18 +14053,11 @@ that logs panics to @code{console.error}.")
|
|||
(sha256
|
||||
(base32
|
||||
"150li8pznpfpn4q0f7g9jwq2hnd5wik0w8378zaa1wffc5ckf6jh"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-log" ,rust-log-0.4)
|
||||
("rust-wasm-bindgen" ,rust-wasm-bindgen-0.2)
|
||||
("rust-web-sys" ,rust-web-sys-0.3))))
|
||||
(home-page "https://github.com/iamcodemaker/console_log")
|
||||
(synopsis "Route Rust log messages to the browser's console")
|
||||
(description
|
||||
"This package provides a logging facility that routes Rust log messages to
|
||||
the browser's console.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
("rust-web-sys" ,rust-web-sys-0.3))))))
|
||||
|
||||
(define-public rust-console-log-0.1
|
||||
(package
|
||||
|
|
Reference in New Issue