me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-gix-command-0.3.

* gnu/packages/crates-vcs.scm (rust-gix-command-0.3): New variable.
(rust-gix-command-0.2): Inherit from rust-gix-command-0.3.

Change-Id: Ic5b963b6f3a4f03f85fef1a809f706e16f53948e
master
Efraim Flashner 2024-03-11 13:45:45 +02:00
parent e3429252f8
commit fef7b2133b
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 27 additions and 8 deletions

View File

@ -1015,8 +1015,34 @@ implementing the standard git bitmap format.")
commit-graph files.")
(license (list license:expat license:asl2.0))))
(define-public rust-gix-command-0.3
(package
(name "rust-gix-command")
(version "0.3.5")
(source
(origin
(method url-fetch)
(uri (crate-uri "gix-command" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1z1p86ahd1swpvhjv1shzyrvrh4cgp05fdm7vb3ay0nn6a3s3gkz"))))
(build-system cargo-build-system)
(arguments
`(#:tests? #f ; use of undeclared crate or module `gix_testtools`
#:cargo-inputs (("rust-bstr" ,rust-bstr-1)
("rust-gix-path" ,rust-gix-path-0.10)
("rust-gix-trace" ,rust-gix-trace-0.1)
("rust-shell-words" ,rust-shell-words-1))))
(home-page "https://github.com/Byron/gitoxide")
(synopsis "Handle internal git command execution")
(description
"This package provides a crate of the gitoxide project handling internal git
command execution.")
(license (list license:expat license:asl2.0))))
(define-public rust-gix-command-0.2
(package
(inherit rust-gix-command-0.3)
(name "rust-gix-command")
(version "0.2.10")
(source
@ -1026,16 +1052,9 @@ commit-graph files.")
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1ix44maislxlranv67yw5fan5k82lpgax22zgc4jrxvpypxnqmrw"))))
(build-system cargo-build-system)
(arguments
`(#:tests? #f ; use of undeclared crate or module `gix_testtools`
#:cargo-inputs (("rust-bstr" ,rust-bstr-1))))
(home-page "https://github.com/Byron/gitoxide")
(synopsis "Handle internal git command execution")
(description
"This package provides a crate of the gitoxide project handling internal git
command execution.")
(license (list license:expat license:asl2.0))))
#:cargo-inputs (("rust-bstr" ,rust-bstr-1))))))
(define-public rust-gix-commitgraph-0.22
(package