mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 04:59:27 -05:00
gnu: Add rust-gix-commitgraph-0.23.
* gnu/packages/crates-vcs.scm (rust-gix-commitgraph-0.23): New variable. (rust-gix-commitgraph-0.22): Inherit from rust-gix-commitgraph-0.23. Change-Id: I577a217baf9802fc9bc6c7eaffa01d30689a6d06
This commit is contained in:
parent
bf3572071c
commit
dd3cedbdf5
1 changed files with 29 additions and 7 deletions
|
@ -1130,8 +1130,36 @@ (define-public rust-gix-command-0.2
|
||||||
`(#:tests? #f ; use of undeclared crate or module `gix_testtools`
|
`(#:tests? #f ; use of undeclared crate or module `gix_testtools`
|
||||||
#:cargo-inputs (("rust-bstr" ,rust-bstr-1))))))
|
#:cargo-inputs (("rust-bstr" ,rust-bstr-1))))))
|
||||||
|
|
||||||
|
(define-public rust-gix-commitgraph-0.23
|
||||||
|
(package
|
||||||
|
(name "rust-gix-commitgraph")
|
||||||
|
(version "0.23.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "gix-commitgraph" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "1z0hn19phbwcwmvp6mn21pvmlq92jyjzw19y0rvs87wm6kscp3by"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-inputs (("rust-bstr" ,rust-bstr-1)
|
||||||
|
("rust-document-features" ,rust-document-features-0.2)
|
||||||
|
("rust-gix-chunk" ,rust-gix-chunk-0.4)
|
||||||
|
("rust-gix-features" ,rust-gix-features-0.37)
|
||||||
|
("rust-gix-hash" ,rust-gix-hash-0.14)
|
||||||
|
("rust-memmap2" ,rust-memmap2-0.9)
|
||||||
|
("rust-serde" ,rust-serde-1)
|
||||||
|
("rust-thiserror" ,rust-thiserror-1))))
|
||||||
|
(home-page "https://github.com/Byron/gitoxide")
|
||||||
|
(synopsis "Read only access to Git the commitgraph file format")
|
||||||
|
(description "Part of Gitoxide, a pure Rust implementation of Git. This
|
||||||
|
package provides read only access to git commitgraph file.")
|
||||||
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
(define-public rust-gix-commitgraph-0.22
|
(define-public rust-gix-commitgraph-0.22
|
||||||
(package
|
(package
|
||||||
|
(inherit rust-gix-commitgraph-0.23)
|
||||||
(name "rust-gix-commitgraph")
|
(name "rust-gix-commitgraph")
|
||||||
(version "0.22.1")
|
(version "0.22.1")
|
||||||
(source
|
(source
|
||||||
|
@ -1141,7 +1169,6 @@ (define-public rust-gix-commitgraph-0.22
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0dpcdj9s5pkdvqpc22jm42y2lhkji2jgixps7a05kw11l1xh19w5"))))
|
(base32 "0dpcdj9s5pkdvqpc22jm42y2lhkji2jgixps7a05kw11l1xh19w5"))))
|
||||||
(build-system cargo-build-system)
|
|
||||||
(arguments
|
(arguments
|
||||||
`(#:cargo-inputs (("rust-bstr" ,rust-bstr-1)
|
`(#:cargo-inputs (("rust-bstr" ,rust-bstr-1)
|
||||||
("rust-document-features" ,rust-document-features-0.2)
|
("rust-document-features" ,rust-document-features-0.2)
|
||||||
|
@ -1150,12 +1177,7 @@ (define-public rust-gix-commitgraph-0.22
|
||||||
("rust-gix-hash" ,rust-gix-hash-0.13)
|
("rust-gix-hash" ,rust-gix-hash-0.13)
|
||||||
("rust-memmap2" ,rust-memmap2-0.9)
|
("rust-memmap2" ,rust-memmap2-0.9)
|
||||||
("rust-serde" ,rust-serde-1)
|
("rust-serde" ,rust-serde-1)
|
||||||
("rust-thiserror" ,rust-thiserror-1))))
|
("rust-thiserror" ,rust-thiserror-1))))))
|
||||||
(home-page "https://github.com/Byron/gitoxide")
|
|
||||||
(synopsis "Read only access to Git the commitgraph file format")
|
|
||||||
(description "Part of Gitoxide, a pure Rust implementation of Git. This
|
|
||||||
package provides read only access to git commitgraph file.")
|
|
||||||
(license (list license:expat license:asl2.0))))
|
|
||||||
|
|
||||||
(define-public rust-gix-commitgraph-0.21
|
(define-public rust-gix-commitgraph-0.21
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue