From 96e6a317816dcadac212855eeefe169a4e56c79e Mon Sep 17 00:00:00 2001 From: John Soo Date: Sat, 14 Dec 2019 18:57:25 -0800 Subject: [PATCH 115/206] gnu: Add rust-slog-2.4. * gnu/packages/crates-io.scm (rust-slog-2.4): New variable. --- gnu/packages/crates-io.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index dee42983f2..2a3613b18a 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -5964,6 +5964,32 @@ data type.") (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 + ;; `(#: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 `(,license:mpl2.0 + ,license:expat + ,license:asl2.0)))) + (define-public rust-smallvec-0.6 (package (name "rust-smallvec") -- 2.24.0