mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add rust-gix-negotiate-0.11.
* gnu/packages/crates-vcs.scm (rust-gix-negotiate-0.11): New variable. (rust-gix-negotiate-0.10): Inherit from rust-gix-negotiate-0.11. Change-Id: I47bad7c54083c3f5acb21b341093ce96b2f942ec
This commit is contained in:
parent
d31c9c1fd2
commit
fa777adf6f
1 changed files with 30 additions and 8 deletions
|
@ -2508,8 +2508,37 @@ (define-public rust-gix-mailmap-0.13
|
|||
("rust-serde" ,rust-serde-1)
|
||||
("rust-thiserror" ,rust-thiserror-1))))))
|
||||
|
||||
(define-public rust-gix-negotiate-0.11
|
||||
(package
|
||||
(name "rust-gix-negotiate")
|
||||
(version "0.11.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "gix-negotiate" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "10nmbml8jz86rq6p2pcc4i7ks0naa9s069i80nnzcng2x6shp0p6"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs (("rust-bitflags" ,rust-bitflags-2)
|
||||
("rust-gix-commitgraph" ,rust-gix-commitgraph-0.23)
|
||||
("rust-gix-date" ,rust-gix-date-0.8)
|
||||
("rust-gix-hash" ,rust-gix-hash-0.14)
|
||||
("rust-gix-object" ,rust-gix-object-0.40)
|
||||
("rust-gix-revwalk" ,rust-gix-revwalk-0.11)
|
||||
("rust-smallvec" ,rust-smallvec-1)
|
||||
("rust-thiserror" ,rust-thiserror-1))))
|
||||
(home-page "https://github.com/Byron/gitoxide")
|
||||
(synopsis "Implements Git's negotiation algorithms as part of Gixoxide")
|
||||
(description
|
||||
"Gitoxide is a pure Rust implementation of Git. This package consists of
|
||||
Git's negotiation algorithms.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-gix-negotiate-0.10
|
||||
(package
|
||||
(inherit rust-gix-negotiate-0.11)
|
||||
(name "rust-gix-negotiate")
|
||||
(version "0.10.0")
|
||||
(source
|
||||
|
@ -2519,7 +2548,6 @@ (define-public rust-gix-negotiate-0.10
|
|||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "0540dz6pcybn1g3mq47nvpnmj90akkrasl4b07fv6lf0v766m7wp"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs (("rust-bitflags" ,rust-bitflags-2)
|
||||
("rust-gix-commitgraph" ,rust-gix-commitgraph-0.22)
|
||||
|
@ -2528,13 +2556,7 @@ (define-public rust-gix-negotiate-0.10
|
|||
("rust-gix-object" ,rust-gix-object-0.39)
|
||||
("rust-gix-revwalk" ,rust-gix-revwalk-0.10)
|
||||
("rust-smallvec" ,rust-smallvec-1)
|
||||
("rust-thiserror" ,rust-thiserror-1))))
|
||||
(home-page "https://github.com/Byron/gitoxide")
|
||||
(synopsis "Implements Git's negotiation algorithms as part of Gixoxide")
|
||||
(description
|
||||
"Gitoxide is a pure Rust implementation of Git. This package consists of
|
||||
Git's negotiation algorithms.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
("rust-thiserror" ,rust-thiserror-1))))))
|
||||
|
||||
(define-public rust-gix-negotiate-0.9
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue