mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 14:52:05 -05:00
gnu: Add rust-gix-index-0.25.
* gnu/packages/crates-io.scm (rust-gix-index-0.25): New variable. (rust-gix-index-0.17): Inherit from rust-gix-index-0.25. Change-Id: I2c4fe0c47b9737efdff8aef678773bf20067bdbb Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
5bbacd1139
commit
2330a9d04d
1 changed files with 42 additions and 9 deletions
|
@ -31159,8 +31159,49 @@ (define-public rust-gix-ignore-0.3
|
|||
.gitignore files.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-gix-index-0.25
|
||||
(package
|
||||
(name "rust-gix-index")
|
||||
(version "0.25.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "gix-index" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "1dqp5ri3kh87qgy0gxzlr0m4jki8xk5sr8zm867hh4rws6ln6kgm"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-test-flags
|
||||
(list "--release" "--"
|
||||
"--skip=access::tests::entry_by_path_with_conflicting_file")
|
||||
#:cargo-inputs (("rust-bitflags" ,rust-bitflags-2)
|
||||
("rust-bstr" ,rust-bstr-1)
|
||||
("rust-btoi" ,rust-btoi-0.4)
|
||||
("rust-document-features" ,rust-document-features-0.2)
|
||||
("rust-filetime" ,rust-filetime-0.2)
|
||||
("rust-gix-bitmap" ,rust-gix-bitmap-0.2)
|
||||
("rust-gix-features" ,rust-gix-features-0.35)
|
||||
("rust-gix-fs" ,rust-gix-fs-0.7)
|
||||
("rust-gix-hash" ,rust-gix-hash-0.13)
|
||||
("rust-gix-lock" ,rust-gix-lock-10)
|
||||
("rust-gix-object" ,rust-gix-object-0.37)
|
||||
("rust-gix-traverse" ,rust-gix-traverse-0.33)
|
||||
("rust-itoa" ,rust-itoa-1)
|
||||
("rust-memmap2" ,rust-memmap2-0.7)
|
||||
("rust-serde" ,rust-serde-1)
|
||||
("rust-smallvec" ,rust-smallvec-1)
|
||||
("rust-thiserror" ,rust-thiserror-1))))
|
||||
(home-page "https://github.com/Byron/gitoxide")
|
||||
(synopsis "Part of Gitoxide, this crate implements the Git index file")
|
||||
(description
|
||||
"Part of Gitoxide, a pure Rust implementation of Rust. This package's
|
||||
crate implements the Git index file.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-gix-index-0.17
|
||||
(package
|
||||
(inherit rust-gix-index-0.25)
|
||||
(name "rust-gix-index")
|
||||
(version "0.17.0")
|
||||
(source
|
||||
|
@ -31170,7 +31211,6 @@ (define-public rust-gix-index-0.17
|
|||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "10kvzsrn7wjgwb3y4xwj9szcg9j81mlkab04z9ii5cdzz9cajsv1"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-bitflags" ,rust-bitflags-2)
|
||||
|
@ -31188,14 +31228,7 @@ (define-public rust-gix-index-0.17
|
|||
("rust-memmap2" ,rust-memmap2-0.5)
|
||||
("rust-serde" ,rust-serde-1)
|
||||
("rust-smallvec" ,rust-smallvec-1)
|
||||
("rust-thiserror" ,rust-thiserror-1))))
|
||||
(home-page "https://github.com/Byron/gitoxide")
|
||||
(synopsis
|
||||
"Crate of the gitoxide project dedicated implementing the git index file")
|
||||
(description
|
||||
"This package provides a work-in-progress crate of the gitoxide project
|
||||
dedicated implementing the git index file.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
("rust-thiserror" ,rust-thiserror-1))))))
|
||||
|
||||
(define-public rust-gix-lock-10
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue