1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-16 03:50:45 +02:00

gnu: Add rust-gix-archive-0.15.

* gnu/packages/crates-vcs.scm (rust-gix-archive-0.15): New variable.
(rust-gix-archive-0.8): Inherit from rust-gix-archive-0.15.

Change-Id: I87ce16961d55ad9c748c640f0d70cb6c08a008b4
This commit is contained in:
Steve George 2024-10-02 17:52:11 +01:00 committed by Efraim Flashner
parent ecb0469e10
commit cc271941a9
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -1043,8 +1043,41 @@ package provides a way to identify Git actors.")
#:cargo-development-inputs
(("rust-pretty-assertions" ,rust-pretty-assertions-1))))))
(define-public rust-gix-archive-0.15
(package
(name "rust-gix-archive")
(version "0.15.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "gix-archive" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "02m6n14jpvz61rwf1rg5lbjgz47n7zbcvqiramsqnff1an5c0iwi"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #f
#:cargo-inputs
(("rust-bstr" ,rust-bstr-1)
("rust-document-features" ,rust-document-features-0.2)
("rust-flate2" ,rust-flate2-1)
("rust-gix-date" ,rust-gix-date-0.9)
("rust-gix-object" ,rust-gix-object-0.44)
("rust-gix-path" ,rust-gix-path-0.10)
("rust-gix-worktree-stream" ,rust-gix-worktree-stream-0.15)
("rust-jiff" ,rust-jiff-0.1)
("rust-tar" ,rust-tar-0.4)
("rust-thiserror" ,rust-thiserror-1)
("rust-zip" ,rust-zip-2))))
(home-page "https://github.com/Byron/gitoxide")
(synopsis "Archive generation from of a worktree stream")
(description
"This package provides archive generation from of a worktree stream.")
(license (list license:expat license:asl2.0))))
(define-public rust-gix-archive-0.8
(package
(inherit rust-gix-archive-0.15)
(name "rust-gix-archive")
(version "0.8.1")
(source
@ -1067,11 +1100,12 @@ package provides a way to identify Git actors.")
("rust-thiserror" ,rust-thiserror-1)
("rust-time" ,rust-time-0.3)
("rust-zip" ,rust-zip-0.6))))
(home-page "https://github.com/Byron/gitoxide")
(synopsis "Archive generation of a Git worktree")
(description "Archive generation of a worktree. Part of Gitoxide a pure
Rust implementation of Git.")
(license (list license:expat license:asl2.0))))
;(home-page "https://github.com/Byron/gitoxide")
;(synopsis "Archive generation of a Git worktree")
;(description "Archive generation of a worktree. Part of Gitoxide a pure
;Rust implementation of Git.")
; (license (list license:expat license:asl2.0))
))
(define-public rust-gix-archive-0.7
(package