mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 14:52:05 -05:00
gnu: Add rust-gix-negotiate-0.8.
* gnu/packages/crates-io.scm (rust-gix-negotiate-0.8): New variable. (rust-gix-negotiate-0.2): Inherit from rust-gix-negotiate-0.8. Change-Id: I65508d41a1a2e4e9cad12e5899a4712ed7001bf6 Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
54a5e8b13b
commit
629fdcccae
1 changed files with 31 additions and 9 deletions
|
@ -31385,8 +31385,38 @@ (define-public rust-gix-mailmap-0.13
|
|||
parsing mailmap files.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-gix-negotiate-0.8
|
||||
(package
|
||||
(name "rust-gix-negotiate")
|
||||
(version "0.8.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "gix-negotiate" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "01408hs82nhj40arkdx145cfmdccf7pydf89sywd3ihik6zrf5kg"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ; user of undeclared crate gix_testtools
|
||||
#:cargo-inputs (("rust-bitflags" ,rust-bitflags-2)
|
||||
("rust-gix-commitgraph" ,rust-gix-commitgraph-0.21)
|
||||
("rust-gix-date" ,rust-gix-date-0.8)
|
||||
("rust-gix-hash" ,rust-gix-hash-0.13)
|
||||
("rust-gix-object" ,rust-gix-object-0.37)
|
||||
("rust-gix-revwalk" ,rust-gix-revwalk-0.8)
|
||||
("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.2
|
||||
(package
|
||||
(inherit rust-gix-negotiate-0.8)
|
||||
(name "rust-gix-negotiate")
|
||||
(version "0.2.1")
|
||||
(source
|
||||
|
@ -31396,7 +31426,6 @@ (define-public rust-gix-negotiate-0.2
|
|||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "137hyq036adi5kapw98vd9b0087lxljfkjaz81glmr0jx7qkwp4l"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ; use of undeclared crate or module `gix_testtools`
|
||||
#:cargo-inputs
|
||||
|
@ -31406,14 +31435,7 @@ (define-public rust-gix-negotiate-0.2
|
|||
("rust-gix-object" ,rust-gix-object-0.30)
|
||||
("rust-gix-revision" ,rust-gix-revision-0.15)
|
||||
("rust-smallvec" ,rust-smallvec-1)
|
||||
("rust-thiserror" ,rust-thiserror-1))))
|
||||
(home-page "https://github.com/Byron/gitoxide")
|
||||
(synopsis
|
||||
"Crate of the gitoxide project implementing negotiation algorithms")
|
||||
(description
|
||||
"This package provides a crate of the gitoxide project implementing
|
||||
negotiation algorithms.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
("rust-thiserror" ,rust-thiserror-1))))))
|
||||
|
||||
(define-public rust-gix-object-0.37
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue