mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add rust-gix-odb-0.53.
* gnu/packages/crates-io.scm (rust-gix-odb-0.53): New variable. (rust-gix-odb-0.46): Inherit from rust-gix-odb-0.53. Change-Id: Ib3c66446dd3503c6d07475dbfc271401703621cf Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
25f742ccc1
commit
54a5e8b13b
1 changed files with 34 additions and 6 deletions
|
@ -31483,8 +31483,41 @@ (define-public rust-gix-object-0.30
|
|||
#:cargo-development-inputs
|
||||
(("rust-pretty-assertions" ,rust-pretty-assertions-1))))))
|
||||
|
||||
(define-public rust-gix-odb-0.53
|
||||
(package
|
||||
(name "rust-gix-odb")
|
||||
(version "0.53.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "gix-odb" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "1gv4zvmizqvxh4n3gnv3yzp83v3spklj0cf6rlrz38m3dcn3jsld"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs (("rust-arc-swap" ,rust-arc-swap-1)
|
||||
("rust-document-features" ,rust-document-features-0.2)
|
||||
("rust-gix-date" ,rust-gix-date-0.8)
|
||||
("rust-gix-features" ,rust-gix-features-0.35)
|
||||
("rust-gix-hash" ,rust-gix-hash-0.13)
|
||||
("rust-gix-object" ,rust-gix-object-0.37)
|
||||
("rust-gix-pack" ,rust-gix-pack-0.43)
|
||||
("rust-gix-path" ,rust-gix-path-0.10)
|
||||
("rust-gix-quote" ,rust-gix-quote-0.4)
|
||||
("rust-parking-lot" ,rust-parking-lot-0.12)
|
||||
("rust-serde" ,rust-serde-1)
|
||||
("rust-tempfile" ,rust-tempfile-3)
|
||||
("rust-thiserror" ,rust-thiserror-1))))
|
||||
(home-page "https://github.com/Byron/gitoxide")
|
||||
(synopsis "Implements various Git object databases")
|
||||
(description "Implements various Git object databases for Gitoxide.
|
||||
Gitoxide is a pure Rust implementation of Git.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-gix-odb-0.46
|
||||
(package
|
||||
(inherit rust-gix-odb-0.53)
|
||||
(name "rust-gix-odb")
|
||||
(version "0.46.0")
|
||||
(source
|
||||
|
@ -31494,7 +31527,6 @@ (define-public rust-gix-odb-0.46
|
|||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "1wzqj6r0vgr2v0v9578s1hikg9abbh85m2vwj0psrvkqca04s8sb"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ; tests not included in release
|
||||
#:cargo-inputs
|
||||
|
@ -31514,11 +31546,7 @@ (define-public rust-gix-odb-0.46
|
|||
(("rust-crossbeam-channel" ,rust-crossbeam-channel-0.5)
|
||||
("rust-filetime" ,rust-filetime-0.2)
|
||||
("rust-maplit" ,rust-maplit-1)
|
||||
("rust-pretty-assertions" ,rust-pretty-assertions-1))))
|
||||
(home-page "https://github.com/Byron/gitoxide")
|
||||
(synopsis "Implements various git object databases")
|
||||
(description "This package implements various git object databases.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
("rust-pretty-assertions" ,rust-pretty-assertions-1))))))
|
||||
|
||||
(define-public rust-gix-pack-0.43
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue