mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add rust-cargo-lock-8.
* gnu/packages/crates-io.scm (rust-cargo-lock-8): New variable. (rust-cargo-lock-7): Inherit from rust-cargo-lock-8.
This commit is contained in:
parent
a0a220adbf
commit
0bff194986
1 changed files with 26 additions and 6 deletions
|
@ -9837,21 +9837,19 @@ (define-public rust-cargo-metadata-0.2
|
|||
("rust-serde-derive" ,rust-serde-derive-1)
|
||||
("rust-serde-json" ,rust-serde-json-1))))))
|
||||
|
||||
(define-public rust-cargo-lock-7
|
||||
(define-public rust-cargo-lock-8
|
||||
(package
|
||||
(name "rust-cargo-lock")
|
||||
(version "7.0.1")
|
||||
(version "8.0.3")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "cargo-lock" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"122wirj0d44xi2i7sc6anjimqfvgw5p5ry840zikc82vpn44pc3z"))))
|
||||
(base32 "15nrkr11dnadmwvzjwn6yv8m20g3xw6yj2cayzgab2ppp3fih5q3"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
`(#:cargo-inputs
|
||||
(("rust-gumdrop" ,rust-gumdrop-0.8)
|
||||
("rust-petgraph" ,rust-petgraph-0.6)
|
||||
("rust-semver" ,rust-semver-1)
|
||||
|
@ -9865,6 +9863,28 @@ (define-public rust-cargo-lock-7
|
|||
optional dependency graph analysis.")
|
||||
(license (list license:asl2.0 license:expat))))
|
||||
|
||||
(define-public rust-cargo-lock-7
|
||||
(package
|
||||
(inherit rust-cargo-lock-8)
|
||||
(name "rust-cargo-lock")
|
||||
(version "7.0.1")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "cargo-lock" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"122wirj0d44xi2i7sc6anjimqfvgw5p5ry840zikc82vpn44pc3z"))))
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("rust-gumdrop" ,rust-gumdrop-0.8)
|
||||
("rust-petgraph" ,rust-petgraph-0.6)
|
||||
("rust-semver" ,rust-semver-1)
|
||||
("rust-serde" ,rust-serde-1)
|
||||
("rust-toml" ,rust-toml-0.5)
|
||||
("rust-url" ,rust-url-2))))))
|
||||
|
||||
(define-public rust-cargo-platform-0.1
|
||||
(package
|
||||
(name "rust-cargo-platform")
|
||||
|
|
Loading…
Reference in a new issue