From c9cae182a190f5ca85a4a17798e38c0f9cdf82dc Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Tue, 27 Oct 2020 11:30:21 +0000 Subject: gnu: Add rust-loggerv. * gnu/packages/crates-io.scm (rust-loggerv): New variable. --- gnu/packages/crates-io.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index a3ffd46c81..0c80a153bf 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -34719,3 +34719,31 @@ division with overflow protection (description "General string search in constant space, linear time, for nonorderable alphabets.") (license (list license:expat license:asl2.0)))) + +(define-public rust-loggerv + (package + (name "rust-loggerv") + (version "0.7.2") + (source + (origin + (method url-fetch) + (uri (crate-uri "loggerv" version)) + (file-name + (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "0x6k903wpm557fkcbr5isgh4yqkkbzw4fm7hwyy61rvimqaxxn30")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-ansi-term" ,rust-ansi-term-0.12) + ("rust-atty" ,rust-atty-0.2) + ("rust-log" ,rust-log-0.4)) + #:cargo-development-inputs + (("rust-clap" ,rust-clap-2)))) + (home-page "") + (synopsis + "A simple log implementation that logs to stdout and stderr with colors") + (description + "This package provides a simple log implementation that logs to stdout and stderr with colors") + (license license:expat))) -- cgit v1.2.3