Archived
1
0
Fork 0

gnu: rust-system-deps-6: Update to 6.1.2.

* gnu/packages/crates-io.scm (rust-system-deps-6): Update to 6.1.2.
[cargo-inputs]: Replace rust-cfg-expr-0.10 with 0.15, rust-toml-0.5 with
0.8.  Remove rust-anyhow-1, rust-itertools-0.10, rust-strum-0.21,
rust-strum-macros-0.21, rust-thiserror-1.
[cargo-development-inputs]: Replace rust-itertools-0.10 with 0.11.

Change-Id: I74499671e4ea782f6f7cd5ff98291344a771f3be
This commit is contained in:
Efraim Flashner 2023-10-27 20:53:00 +03:00
parent 68f16c4ad8
commit f2ae2fa931
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -74257,33 +74257,28 @@ processors, disks, components and networks.")
(define-public rust-system-deps-6 (define-public rust-system-deps-6
(package (package
(name "rust-system-deps") (name "rust-system-deps")
(version "6.0.2") (version "6.1.2")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (crate-uri "system-deps" version)) (uri (crate-uri "system-deps" version))
(file-name (string-append name "-" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz"))
(sha256 (sha256
(base32 "02g750rlhh7ynqa3p4a3qm7jrkjp3d0jlzrl29z225ch9hf5m951")) (base32 "1mlpx2vzgcp39lfgr7ndwsf8vgjr6fs1h9cajk2am51g83wm5bwl"))
(snippet (snippet
#~(begin (delete-file "src/tests/lib/libteststatic.a"))))) #~(begin (delete-file "src/tests/lib/libteststatic.a")))))
(build-system cargo-build-system) (build-system cargo-build-system)
(arguments (arguments
`(#:tests? #f ;source is missing some test files `(#:tests? #f ;source is missing some test files
#:cargo-inputs #:cargo-inputs
(("rust-anyhow" ,rust-anyhow-1) (("rust-cfg-expr" ,rust-cfg-expr-0.15)
("rust-cfg-expr" ,rust-cfg-expr-0.10)
("rust-heck" ,rust-heck-0.4) ("rust-heck" ,rust-heck-0.4)
("rust-itertools" ,rust-itertools-0.10)
("rust-pkg-config" ,rust-pkg-config-0.3) ("rust-pkg-config" ,rust-pkg-config-0.3)
("rust-strum" ,rust-strum-0.21) ("rust-toml" ,rust-toml-0.8)
("rust-strum-macros" ,rust-strum-macros-0.21)
("rust-thiserror" ,rust-thiserror-1)
("rust-toml" ,rust-toml-0.5)
("rust-version-compare" ,rust-version-compare-0.1)) ("rust-version-compare" ,rust-version-compare-0.1))
#:cargo-development-inputs #:cargo-development-inputs
(("rust-assert-matches" ,rust-assert-matches-1) (("rust-assert-matches" ,rust-assert-matches-1)
("rust-itertools" ,rust-itertools-0.10) ("rust-itertools" ,rust-itertools-0.11)
("rust-lazy-static" ,rust-lazy-static-1)))) ("rust-lazy-static" ,rust-lazy-static-1))))
(home-page "https://github.com/gdesmott/system-deps") (home-page "https://github.com/gdesmott/system-deps")
(synopsis "Define system dependencies in @file{Cargo.toml}") (synopsis "Define system dependencies in @file{Cargo.toml}")