me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-rustfix-0.8.

* gnu/packages/crates-io.scm (rust-rustfix-0.8): New variable.
(rust-rustfix-0.7): Inherit from rust-rustfix-0.8.

Change-Id: I6f823ec84125352daa5ed6e45eb52e9471e65019
master
Efraim Flashner 2024-03-27 10:31:36 +02:00
parent 23c2ce09c6
commit a263f8e363
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 27 additions and 3 deletions

View File

@ -62797,17 +62797,17 @@ rustc compiler.")
(description "Types for rustdoc's json output.")
(license (list license:expat license:asl2.0))))
(define-public rust-rustfix-0.7
(define-public rust-rustfix-0.8
(package
(name "rust-rustfix")
(version "0.7.0")
(version "0.8.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "rustfix" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0xaicbgcbvwkf4m9wxmd8jic1a1di0k63mjlyd74jbiap6z0rhby"))))
(base32 "1975qnw1rdd1bsj8qzii0vx0mdxv4946xp4gfprmvnj6f04lp1l1"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs (("rust-serde" ,rust-serde-1)
@ -62825,6 +62825,30 @@ rustc compiler.")
(description "Automatically apply the suggestions made by rustc.")
(license (list license:expat license:asl2.0))))
(define-public rust-rustfix-0.7
(package
(inherit rust-rustfix-0.8)
(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"))))
(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))))))
(define-public rust-rustfix-0.6
(package
(inherit rust-rustfix-0.7)