* gnu/packages/rust.scm (rust-log): New variable. --- gnu/packages/rust.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+)
diff --git a/gnu/packages/rust.scm b/gnu/packages/rust.scm index 68c22a279..0dc05520b 100644 --- a/gnu/packages/rust.scm +++ b/gnu/packages/rust.scm @@ -360,3 +360,25 @@ evaluated statics in Rust.") on @code{DOtherSide} C bindings for QML Library. It is mostly feature-compliant with other bindings based on the library.") (license license:expat))) + +(define-public rust-log + (package + (name "rust-log") + (version "0.3.6") + (source + (origin + (method url-fetch) + (uri (crate-uri "log" version)) + (file-name + (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "0m40hgs3cg57dd5kk1mabfk6gk8z6l1cihar8akx4kmzz1xlk0xb")))) + (build-system cargo-build-system) + (home-page "https://github.com/rust-lang/log") + (synopsis "Logging implementation for Rust") + (description + "Log provides a logging facade. Libraries can use the provided +logging API, and the consumer of those libraries can choose the logging +implementation that is most suitable for its use case.") + (license (list license:expat license:asl2.0)))) -- 2.11.0