gnu: Add rust-slog-2.4.

* gnu/packages/crates-io.scm (rust-slog-2.4): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
John Soo 2019-12-14 18:57:25 -08:00 committed by Efraim Flashner
parent 99af41fa40
commit 3c313f185f
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -5929,6 +5929,32 @@ (define-public rust-slab-0.4
(properties '((hidden? . #t)))
(license license:expat)))
(define-public rust-slog-2.4
(package
(name "rust-slog")
(version "2.4.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "slog" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"13jh74jlckzh5cygkhs0k4r82wnmw8ha2km829xwslhr83n2w6hy"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-erased-serde" ,rust-erased-serde-0.3))))
(home-page "https://github.com/slog-rs/slog")
(synopsis "Structured, extensible, composable logging for Rust")
(description
"Structured, extensible, composable logging for Rust.")
(license (list license:mpl2.0
license:expat
license:asl2.0))))
(define-public rust-smallvec-0.6
(package
(name "rust-smallvec")