dannym pushed a commit to branch master
in repository guix.

commit 3a0469e929eb47514f83ae93510e594246acebf5
Author: Danny Milosavljevic <dan...@friendly-machines.com>
AuthorDate: Mon May 19 20:45:43 2025 +0200

    gnu: Add rust-gix-pathspec@0.8.1.
    
    * gnu/packages/crates-vcs.scm (rust-gix-pathspec-0.8): New variable.
    
    Change-Id: Icfae0d080e3adfaf978af545950c6a36d8e15a62
---
 gnu/packages/crates-vcs.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/crates-vcs.scm b/gnu/packages/crates-vcs.scm
index 16a5c00b0c..b7b9c7dfc6 100644
--- a/gnu/packages/crates-vcs.scm
+++ b/gnu/packages/crates-vcs.scm
@@ -1209,6 +1209,34 @@ finding names for revisions and parsing specifications.")
 algorithms.")
     (license (list license:expat license:asl2.0))))
 
+(define-public rust-gix-pathspec-0.8
+  (package
+    (name "rust-gix-pathspec")
+    (version "0.8.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "gix-pathspec" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "07mqfl6232285yzsmym2vr7vndwh3ivx9p7xgv7nzsd4wkxjsisc"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:skip-build? #t
+       #:cargo-inputs (("rust-bitflags" ,rust-bitflags-2)
+                       ("rust-bstr" ,rust-bstr-1)
+                       ("rust-gix-attributes" ,rust-gix-attributes-0.23)
+                       ("rust-gix-config-value" ,rust-gix-config-value-0.14)
+                       ("rust-gix-glob" ,rust-gix-glob-0.17)
+                       ("rust-gix-path" ,rust-gix-path-0.10)
+                       ("rust-thiserror" ,rust-thiserror-2))))
+    (home-page "https://github.com/GitoxideLabs/gitoxide";)
+    (synopsis "git magical pathspecs")
+    (description
+     "This package provides a crate of the gitoxide project dealing with
+git magical pathspecs.")
+    (license (list license:expat license:asl2.0))))
+
 (define-public rust-gix-0.66
   (package
     (name "rust-gix")

Reply via email to