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

commit 58e2dbc8734d5bf2bacafe2aeda7788b18d11aba
Author: Efraim Flashner <efr...@flashner.co.il>
AuthorDate: Fri Feb 14 13:09:13 2025 +0200

    gnu: Add rust-gix-hash-0.15.
    
    * gnu/packages/crates-vcs.scm (rust-gix-hash-0.15): New variable.
    (rust-gix-hash-0.14): Inherit from rust-gix-hash-0.15.
    
    Change-Id: Ibca27368d564f177b273c1ce367a855a6e7be305
---
 gnu/packages/crates-vcs.scm | 31 ++++++++++++++++++++++++-------
 1 file changed, 24 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/crates-vcs.scm b/gnu/packages/crates-vcs.scm
index e06feef878..39a67c74c4 100644
--- a/gnu/packages/crates-vcs.scm
+++ b/gnu/packages/crates-vcs.scm
@@ -3655,31 +3655,48 @@ pattern matching.")
                        ("rust-gix-path" ,rust-gix-path-0.10)
                        ("rust-serde" ,rust-serde-1))))))
 
-(define-public rust-gix-hash-0.14
+(define-public rust-gix-hash-0.15
   (package
     (name "rust-gix-hash")
-    (version "0.14.2")
+    (version "0.15.1")
     (source
      (origin
        (method url-fetch)
        (uri (crate-uri "gix-hash" version))
        (file-name (string-append name "-" version ".tar.gz"))
        (sha256
-        (base32 "0pjdlxbqxd9lbkccryfw2ghifiq3gz9h8ylliw0va8b16vvpsggr"))))
+        (base32 "1kp4yjlkp8g4qg0r2zs0jmz19r076f2y91cjsikhxvclf70wqphb"))))
     (build-system cargo-build-system)
     (arguments
      `(#:cargo-inputs (("rust-document-features" ,rust-document-features-0.2)
                        ("rust-faster-hex" ,rust-faster-hex-0.9)
                        ("rust-serde" ,rust-serde-1)
-                       ("rust-thiserror" ,rust-thiserror-1))))
-    (home-page "https://github.com/Byron/gitoxide";)
-    (synopsis
-     "Borrowed and owned git hash digests used to identify git objects")
+                       ("rust-thiserror" ,rust-thiserror-2))))
+    (home-page "https://github.com/GitoxideLabs/gitoxide";)
+    (synopsis "Borrowed and owned git hash digests used to identify git 
objects")
     (description
      "Borrowed and owned git hash digests used to identify git objects.  This
 package is part of Gitoxide, a pure Rust implementation of Git.")
     (license (list license:expat license:asl2.0))))
 
+(define-public rust-gix-hash-0.14
+  (package
+    (inherit rust-gix-hash-0.15)
+    (name "rust-gix-hash")
+    (version "0.14.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "gix-hash" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "0pjdlxbqxd9lbkccryfw2ghifiq3gz9h8ylliw0va8b16vvpsggr"))))
+    (arguments
+     `(#:cargo-inputs (("rust-document-features" ,rust-document-features-0.2)
+                       ("rust-faster-hex" ,rust-faster-hex-0.9)
+                       ("rust-serde" ,rust-serde-1)
+                       ("rust-thiserror" ,rust-thiserror-1))))))
+
 (define-public rust-gix-hash-0.13
   (package
     (inherit rust-gix-hash-0.14)

Reply via email to