mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
gnu: Add rust-simple-logger-2.
* gnu/packages/crates-io.scm (rust-simple-logger-2): New variable. (rust-simple-logger-1): Inherit from rust-simple-logger-2.
This commit is contained in:
parent
f46dabb185
commit
016dcbe6b9
1 changed files with 28 additions and 8 deletions
|
@ -56860,8 +56860,35 @@ (define-public rust-simplelog-0.11
|
|||
small to medium sized project")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-simple-logger-2
|
||||
(package
|
||||
(name "rust-simple-logger")
|
||||
(version "2.3.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "simple-logger" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1ivdlw45f07byxgl43l2pa0dlnclbw1aj40shjpil598nmvpw128"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-atty" ,rust-atty-0.2)
|
||||
("rust-colored" ,rust-colored-2)
|
||||
("rust-log" ,rust-log-0.4)
|
||||
("rust-time" ,rust-time-0.3)
|
||||
("rust-winapi" ,rust-winapi-0.3))))
|
||||
(home-page "https://github.com/borntyping/rust-simple_logger")
|
||||
(synopsis "Logger with a readable output format")
|
||||
(description
|
||||
"This package provides a logger that prints all messages with
|
||||
a readable output format.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-simple-logger-1
|
||||
(package
|
||||
(inherit rust-simple-logger-2)
|
||||
(name "rust-simple-logger")
|
||||
(version "1.13.0")
|
||||
(source
|
||||
|
@ -56871,20 +56898,13 @@ (define-public rust-simple-logger-1
|
|||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "01wz5xjpski45xq8v1bg8g05flj5h1sl63aabl2c6kj0hz337pmp"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-atty" ,rust-atty-0.2)
|
||||
("rust-chrono" ,rust-chrono-0.4)
|
||||
("rust-colored" ,rust-colored-1)
|
||||
("rust-log" ,rust-log-0.4)
|
||||
("rust-winapi" ,rust-winapi-0.3))))
|
||||
(home-page "https://github.com/borntyping/rust-simple_logger")
|
||||
(synopsis "Logger with a readable output format")
|
||||
(description
|
||||
"This package provides a logger that prints all messages with
|
||||
a readable output format")
|
||||
(license license:expat)))
|
||||
("rust-winapi" ,rust-winapi-0.3))))))
|
||||
|
||||
(define-public rust-simple-mutex-1
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue