mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add rust-gix-actor-0.29.
* gnu/packages/crates-vcs.scm (rust-gix-actor-0.29): New variable. (rust-gix-actor-0.28): Inherit from rust-gix-actor-0.29. Change-Id: I29dce2dcecf9b56cdf13c3dfb63126f8bbf40d3a
This commit is contained in:
parent
6d6450c2d4
commit
53f089eca8
1 changed files with 34 additions and 7 deletions
|
@ -799,8 +799,40 @@ (define-public rust-gix-0.45
|
|||
("rust-serial-test" ,rust-serial-test-2)
|
||||
("rust-walkdir" ,rust-walkdir-2))))))
|
||||
|
||||
(define-public rust-gix-actor-0.29
|
||||
(package
|
||||
(name "rust-gix-actor")
|
||||
(version "0.29.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "gix-actor" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "0n6rq4nln61kvppz304llwl3ricckx04ikfwj7w5zixm9amva9ys"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ; use of undeclared crate or module `gix_testtools`
|
||||
#:cargo-inputs (("rust-bstr" ,rust-bstr-1)
|
||||
("rust-btoi" ,rust-btoi-0.4)
|
||||
("rust-document-features" ,rust-document-features-0.2)
|
||||
("rust-gix-date" ,rust-gix-date-0.8)
|
||||
("rust-gix-features" ,rust-gix-features-0.37)
|
||||
("rust-itoa" ,rust-itoa-1)
|
||||
("rust-serde" ,rust-serde-1)
|
||||
("rust-thiserror" ,rust-thiserror-1)
|
||||
("rust-winnow" ,rust-winnow-0.5))
|
||||
#:cargo-development-inputs
|
||||
(("rust-pretty-assertions" ,rust-pretty-assertions-1))))
|
||||
(home-page "https://github.com/Byron/gitoxide")
|
||||
(synopsis "Part of Gitoxide, a way to identify Git actors")
|
||||
(description "Part of Gitoxide, a pure Rust implementation of Git. This
|
||||
package provides a way to identify Git actors.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-gix-actor-0.28
|
||||
(package
|
||||
(inherit rust-gix-actor-0.29)
|
||||
(name "rust-gix-actor")
|
||||
(version "0.28.1")
|
||||
(source
|
||||
|
@ -810,7 +842,6 @@ (define-public rust-gix-actor-0.28
|
|||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "05xldn3aq58kjx2i87xsb2gdw7qhxvvikyvsiwvv85ppkq1cmb9f"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ; use of undeclared crate or module `gix_testtools`
|
||||
#:cargo-inputs (("rust-bstr" ,rust-bstr-1)
|
||||
|
@ -822,12 +853,8 @@ (define-public rust-gix-actor-0.28
|
|||
("rust-serde" ,rust-serde-1)
|
||||
("rust-thiserror" ,rust-thiserror-1)
|
||||
("rust-winnow" ,rust-winnow-0.5))
|
||||
#:cargo-development-inputs (("rust-pretty-assertions" ,rust-pretty-assertions-1))))
|
||||
(home-page "https://github.com/Byron/gitoxide")
|
||||
(synopsis "Part of Gitoxide, a way to identify Git actors")
|
||||
(description "Part of Gitoxide, a pure Rust implementation of Git. This
|
||||
package provides a way to identify Git actors.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
#:cargo-development-inputs
|
||||
(("rust-pretty-assertions" ,rust-pretty-assertions-1))))))
|
||||
|
||||
(define-public rust-gix-actor-0.27
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue