mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add rust-gix-url-0.26.
* gnu/packages/crates-vcs.scm (rust-gix-url-0.26): New variable. (rust-gix-url-0.25): Inherit from rust-gix-url-0.26. Change-Id: Ibe8cc1e29503aba1ac826f55c621254cb4205f8b
This commit is contained in:
parent
ac627c1c9a
commit
0421357ff0
1 changed files with 34 additions and 9 deletions
|
@ -4373,8 +4373,40 @@ (define-public rust-gix-traverse-0.26
|
|||
("rust-gix-object" ,rust-gix-object-0.30)
|
||||
("rust-thiserror" ,rust-thiserror-1))))))
|
||||
|
||||
(define-public rust-gix-url-0.26
|
||||
(package
|
||||
(name "rust-gix-url")
|
||||
(version "0.26.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "gix-url" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "0i6wjjaq1yhxqk9gbriv9raldhs04yy91ipys4qs4lkmxg61f3wg"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs (("rust-bstr" ,rust-bstr-1)
|
||||
("rust-document-features" ,rust-document-features-0.2)
|
||||
("rust-gix-features" ,rust-gix-features-0.37)
|
||||
("rust-gix-path" ,rust-gix-path-0.10)
|
||||
("rust-home" ,rust-home-0.5)
|
||||
("rust-serde" ,rust-serde-1)
|
||||
("rust-thiserror" ,rust-thiserror-1)
|
||||
("rust-url" ,rust-url-2))
|
||||
#:cargo-development-inputs
|
||||
(("rust-assert-matches" ,rust-assert-matches-1))))
|
||||
(home-page "https://github.com/Byron/gitoxide")
|
||||
(synopsis
|
||||
"This crate implements parsing and serialization of gix-url for Gitoxide")
|
||||
(description
|
||||
"This package is part of Gitoxide a Rust implementation of Git. It
|
||||
provides a crate for parsing and serialization of gix-url's.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-gix-url-0.25
|
||||
(package
|
||||
(inherit rust-gix-url-0.26)
|
||||
(name "rust-gix-url")
|
||||
(version "0.25.2")
|
||||
(source
|
||||
|
@ -4384,7 +4416,6 @@ (define-public rust-gix-url-0.25
|
|||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "01a0phpk3f0lrhavqm51cgpdwh925i2djiyslaj57ync24d7lhhc"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs (("rust-bstr" ,rust-bstr-1)
|
||||
("rust-document-features" ,rust-document-features-0.2)
|
||||
|
@ -4394,14 +4425,8 @@ (define-public rust-gix-url-0.25
|
|||
("rust-serde" ,rust-serde-1)
|
||||
("rust-thiserror" ,rust-thiserror-1)
|
||||
("rust-url" ,rust-url-2))
|
||||
#:cargo-development-inputs (("rust-assert-matches" ,rust-assert-matches-1))))
|
||||
(home-page "https://github.com/Byron/gitoxide")
|
||||
(synopsis
|
||||
"This crate implements parsing and serialization of gix-url for Gitoxide")
|
||||
(description
|
||||
"This package is part of Gitoxide a Rust implementation of Git. It
|
||||
provides a crate for parsing and serialization of gix-url's.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
#:cargo-development-inputs
|
||||
(("rust-assert-matches" ,rust-assert-matches-1))))))
|
||||
|
||||
(define-public rust-gix-url-0.24
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue