From 6b0a2035f96379a6313dbec573e1d2556358c675 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Fri, 17 Dec 2021 22:57:32 +0100 Subject: gnu: Add rust-shadow-rs-0.8. * gnu/packages/crates-io.scm (rust-shadow-rs-0.8): New variable. (rust-shadow-rs-0.6): Inherit from above. --- gnu/packages/crates-io.scm | 31 +++++++++++++++++++++++++------ 1 file changed, 25 insertions(+), 6 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index e0dffcccda..baffb4c022 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -49392,24 +49392,24 @@ functions core functionality.") picking compatible shaders.") (license license:expat))) -(define-public rust-shadow-rs-0.6 +(define-public rust-shadow-rs-0.8 (package (name "rust-shadow-rs") - (version "0.6.2") + (version "0.8.1") (source (origin (method url-fetch) (uri (crate-uri "shadow-rs" version)) - (file-name - (string-append name "-" version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "0sps996yhchz43zfk9zysjpirz638s1hbhspp998bk6v9l6k7j10")))) + (base32 "0iy4f6yzag52qr93hjhm2l8crxhjblr91nffbdd8zzw0xchfjdc9")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs (("rust-chrono" ,rust-chrono-0.4) - ("rust-git2" ,rust-git2-0.13)))) + ("rust-git2" ,rust-git2-0.13) + ("rust-is-debug" ,rust-is-debug-1)))) (home-page "https://github.com/baoyachi/shadow-rs") (synopsis "Recall properties of the build process at run time") (description @@ -49418,6 +49418,25 @@ and environment at run time. You can use this tool to check in production exactly where a binary came from and how it was built.") (license (list license:expat license:asl2.0)))) +(define-public rust-shadow-rs-0.6 + (package + (inherit rust-shadow-rs-0.8) + (name "rust-shadow-rs") + (version "0.6.2") + (source + (origin + (method url-fetch) + (uri (crate-uri "shadow-rs" version)) + (file-name + (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0sps996yhchz43zfk9zysjpirz638s1hbhspp998bk6v9l6k7j10")))) + (arguments + `(#:skip-build? #t + #:cargo-inputs + (("rust-chrono" ,rust-chrono-0.4) + ("rust-git2" ,rust-git2-0.13)))))) + (define-public rust-shadow-rs-0.5 (package (inherit rust-shadow-rs-0.6) -- cgit v1.2.3