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
This commit is contained in:
parent
e3429252f8
commit
fef7b2133b
1 changed files with 27 additions and 8 deletions
|
@ -1015,8 +1015,34 @@ implementing the standard git bitmap format.")
|
||||||
commit-graph files.")
|
commit-graph files.")
|
||||||
(license (list license:expat license:asl2.0))))
|
(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
|
(define-public rust-gix-command-0.2
|
||||||
(package
|
(package
|
||||||
|
(inherit rust-gix-command-0.3)
|
||||||
(name "rust-gix-command")
|
(name "rust-gix-command")
|
||||||
(version "0.2.10")
|
(version "0.2.10")
|
||||||
(source
|
(source
|
||||||
|
@ -1026,16 +1052,9 @@ commit-graph files.")
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1ix44maislxlranv67yw5fan5k82lpgax22zgc4jrxvpypxnqmrw"))))
|
(base32 "1ix44maislxlranv67yw5fan5k82lpgax22zgc4jrxvpypxnqmrw"))))
|
||||||
(build-system cargo-build-system)
|
|
||||||
(arguments
|
(arguments
|
||||||
`(#: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))))))
|
||||||
(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-commitgraph-0.22
|
(define-public rust-gix-commitgraph-0.22
|
||||||
(package
|
(package
|
||||||
|
|
Reference in a new issue