efraim pushed a commit to branch rust-team in repository guix. commit 59e5fe43b38bdb51f5f1fe1df2b2d0b89f7f8323 Author: Efraim Flashner <efr...@flashner.co.il> AuthorDate: Tue Oct 24 09:12:29 2023 +0300
gnu: Add rust-gix-command-0.2. * gnu/packages/crates-io.scm (rust-gix-command-0.2): New variable. Change-Id: I82c8497f50c221f678bb41b3dea4ea4683cd9ab8 --- gnu/packages/crates-io.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index d3149d4763..c26d0e1132 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -29829,6 +29829,28 @@ libcurl, which is intended to be used with the @code{git2} crate.") ("rust-log" ,rust-log-0.4) ("rust-url" ,rust-url-2)))))) +(define-public rust-gix-command-0.2 + (package + (name "rust-gix-command") + (version "0.2.10") + (source + (origin + (method url-fetch) + (uri (crate-uri "gix-command" version)) + (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)))) + (define-public rust-gix-commitgraph-0.16 (package (name "rust-gix-commitgraph")