guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

18/51: gnu: Add rust-gix-command-0.3.


From: guix-commits
Subject: 18/51: gnu: Add rust-gix-command-0.3.
Date: Wed, 13 Mar 2024 07:12:23 -0400 (EDT)

efraim pushed a commit to branch rust-team
in repository guix.

commit 840c03dcb71211f47ebd0a5835ea2e95778ee6d0
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Mon Mar 11 13:45:45 2024 +0200

    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
---
 gnu/packages/crates-vcs.scm | 27 +++++++++++++++++++++++----
 1 file changed, 23 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/crates-vcs.scm b/gnu/packages/crates-vcs.scm
index cb9192794b..acadd70f90 100644
--- a/gnu/packages/crates-vcs.scm
+++ b/gnu/packages/crates-vcs.scm
@@ -1015,21 +1015,24 @@ implementing the standard git bitmap format.")
 commit-graph files.")
     (license (list license:expat license:asl2.0))))
 
-(define-public rust-gix-command-0.2
+(define-public rust-gix-command-0.3
   (package
     (name "rust-gix-command")
-    (version "0.2.10")
+    (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 "1ix44maislxlranv67yw5fan5k82lpgax22zgc4jrxvpypxnqmrw"))))
+        (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))))
+       #: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
@@ -1037,6 +1040,22 @@ commit-graph files.")
 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
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "gix-command" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "1ix44maislxlranv67yw5fan5k82lpgax22zgc4jrxvpypxnqmrw"))))
+    (arguments
+     `(#:tests? #f      ; use of undeclared crate or module `gix_testtools`
+       #:cargo-inputs (("rust-bstr" ,rust-bstr-1))))))
+
 (define-public rust-gix-commitgraph-0.22
   (package
     (name "rust-gix-commitgraph")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]