mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-01 07:16:39 +01:00
gnu: Add rust-gix-validate-0.9.
* gnu/packages/crates-vcs.scm (rust-gix-validate-0.9): New variable. (rust-gix-validate-0.8): Inherit from rust-gix-validate-0.9. Change-Id: I696950afed6729e795b22b76049ae7ddde1ee771
This commit is contained in:
parent
cf75210243
commit
e43140a945
1 changed files with 24 additions and 6 deletions
|
@ -5513,8 +5513,31 @@ (define-public rust-gix-utils-0.1
|
|||
feature toggles.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-gix-validate-0.9
|
||||
(package
|
||||
(name "rust-gix-validate")
|
||||
(version "0.9.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "gix-validate" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "11kckcqaihbik9pzx08dzl81k6965isnpqiyb42b8msfnvdvmwl1"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-bstr" ,rust-bstr-1)
|
||||
("rust-thiserror" ,rust-thiserror-1))))
|
||||
(home-page "https://github.com/Byron/gitoxide")
|
||||
(synopsis "Validation functions for various kinds of names in Git")
|
||||
(description "Part of Gitoxide, a pure Rust implementation of Git. This
|
||||
package contains validation functions for various kinds of names in Git.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-gix-validate-0.8
|
||||
(package
|
||||
(inherit rust-gix-validate-0.9)
|
||||
(name "rust-gix-validate")
|
||||
(version "0.8.4")
|
||||
(source
|
||||
|
@ -5527,12 +5550,7 @@ (define-public rust-gix-validate-0.8
|
|||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs (("rust-bstr" ,rust-bstr-1)
|
||||
("rust-thiserror" ,rust-thiserror-1))))
|
||||
(home-page "https://github.com/Byron/gitoxide")
|
||||
(synopsis "Rust validation functions for various kinds of names in Git")
|
||||
(description "Part of Gitoxide, a pure Rust implementation of Git. This
|
||||
package contains validation functions for various kinds of names in Git.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
("rust-thiserror" ,rust-thiserror-1))))))
|
||||
|
||||
(define-public rust-gix-validate-0.7
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue