diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-03-11 13:43:30 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-07-19 00:40:26 +0300 |
commit | 41a3957e1746b21bbbae0ac8ddad5952d67ea70b (patch) | |
tree | 45b475a8408715cb3c87cc6da3516be786a126fb /gnu | |
parent | 00824d32e62f9208ff0032ee48b3ed84645180c7 (diff) | |
download | guix-41a3957e1746b21bbbae0ac8ddad5952d67ea70b.tar.gz guix-41a3957e1746b21bbbae0ac8ddad5952d67ea70b.zip |
gnu: Add rust-rustfix-0.7.
* gnu/packages/crates-io.scm (rust-rustfix-0.7): New variable.
(rust-rustfix-0.6): Inherit from rust-rustfix-0.7.
Change-Id: Ifac613759f80ee9eed6beb43f711b9d573d541b1
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/crates-io.scm | 36 |
1 files changed, 30 insertions, 6 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 7bd6647c05..7a229c0f63 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -57547,8 +57547,37 @@ rustc compiler.") "This package provides a tool to manipulate rustdoc comments.") (license license:asl2.0))) +(define-public rust-rustfix-0.7 + (package + (name "rust-rustfix") + (version "0.7.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "rustfix" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0xaicbgcbvwkf4m9wxmd8jic1a1di0k63mjlyd74jbiap6z0rhby")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-serde" ,rust-serde-1) + ("rust-serde-json" ,rust-serde-json-1) + ("rust-thiserror" ,rust-thiserror-1) + ("rust-tracing" ,rust-tracing-0.1)) + #:cargo-development-inputs + (("rust-anyhow" ,rust-anyhow-1) + ("rust-proptest" ,rust-proptest-1) + ("rust-similar" ,rust-similar-2) + ("rust-tempfile" ,rust-tempfile-3) + ("rust-tracing-subscriber" ,rust-tracing-subscriber-0.3)))) + (home-page "https://github.com/rust-lang/cargo") + (synopsis "Automatically apply the suggestions made by rustc") + (description "Automatically apply the suggestions made by rustc.") + (license (list license:expat license:asl2.0)))) + (define-public rust-rustfix-0.6 (package + (inherit rust-rustfix-0.7) (name "rust-rustfix") (version "0.6.1") (source @@ -57558,18 +57587,13 @@ rustc compiler.") (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 "10b4qlvfwljp7yss8afj0lnn8vqj78n93n9vfmkq9616kqyqblpc")))) - (build-system cargo-build-system) (arguments `(#:skip-build? #t ; Cut the dependency chain here #:cargo-inputs (("rust-anyhow" ,rust-anyhow-1) ("rust-log" ,rust-log-0.4) ("rust-serde" ,rust-serde-1) - ("rust-serde-json" ,rust-serde-json-1)))) - (home-page "https://github.com/rust-lang/rustfix") - (synopsis "Automatically apply the suggestions made by rustc") - (description "Automatically apply the suggestions made by rustc.") - (license (list license:expat license:asl2.0)))) + ("rust-serde-json" ,rust-serde-json-1)))))) (define-public rust-rustfix-0.5 (package |