guix-commits
[Top][All Lists]
Advanced

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

298/422: gnu: Add rust-gix-archive-0.15.


From: guix-commits
Subject: 298/422: gnu: Add rust-gix-archive-0.15.
Date: Wed, 6 Nov 2024 04:02:47 -0500 (EST)

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

commit 28d7226647191bd2ed0291b037e57d1f1cc2efeb
Author: Steve George <steve@futurile.net>
AuthorDate: Wed Oct 2 17:52:11 2024 +0100

    gnu: Add rust-gix-archive-0.15.
    
    * gnu/packages/crates-vcs.scm (rust-gix-archive-0.15): New variable.
    (rust-gix-archive-0.8): Inherit from rust-gix-archive-0.15.
    
    Change-Id: I87ce16961d55ad9c748c640f0d70cb6c08a008b4
---
 gnu/packages/crates-vcs.scm | 44 +++++++++++++++++++++++++++++++++++++++-----
 1 file changed, 39 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/crates-vcs.scm b/gnu/packages/crates-vcs.scm
index 1ddcc34c27..2303a6a02a 100644
--- a/gnu/packages/crates-vcs.scm
+++ b/gnu/packages/crates-vcs.scm
@@ -1043,8 +1043,41 @@ package provides a way to identify Git actors.")
        #:cargo-development-inputs
        (("rust-pretty-assertions" ,rust-pretty-assertions-1))))))
 
+(define-public rust-gix-archive-0.15
+  (package
+    (name "rust-gix-archive")
+    (version "0.15.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "gix-archive" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "02m6n14jpvz61rwf1rg5lbjgz47n7zbcvqiramsqnff1an5c0iwi"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:skip-build? #f
+       #:cargo-inputs
+       (("rust-bstr" ,rust-bstr-1)
+        ("rust-document-features" ,rust-document-features-0.2)
+        ("rust-flate2" ,rust-flate2-1)
+        ("rust-gix-date" ,rust-gix-date-0.9)
+        ("rust-gix-object" ,rust-gix-object-0.44)
+        ("rust-gix-path" ,rust-gix-path-0.10)
+        ("rust-gix-worktree-stream" ,rust-gix-worktree-stream-0.15)
+        ("rust-jiff" ,rust-jiff-0.1)
+        ("rust-tar" ,rust-tar-0.4)
+        ("rust-thiserror" ,rust-thiserror-1)
+        ("rust-zip" ,rust-zip-2))))
+    (home-page "https://github.com/Byron/gitoxide";)
+    (synopsis "Archive generation from of a worktree stream")
+    (description
+     "This package provides archive generation from of a worktree stream.")
+    (license (list license:expat license:asl2.0))))
+
 (define-public rust-gix-archive-0.8
   (package
+    (inherit rust-gix-archive-0.15)
     (name "rust-gix-archive")
     (version "0.8.1")
     (source
@@ -1067,11 +1100,12 @@ package provides a way to identify Git actors.")
                        ("rust-thiserror" ,rust-thiserror-1)
                        ("rust-time" ,rust-time-0.3)
                        ("rust-zip" ,rust-zip-0.6))))
-    (home-page "https://github.com/Byron/gitoxide";)
-    (synopsis "Archive generation of a Git worktree")
-    (description "Archive generation of a worktree.  Part of Gitoxide a pure
-Rust implementation of Git.")
-    (license (list license:expat license:asl2.0))))
+    ;(home-page "https://github.com/Byron/gitoxide";)
+    ;(synopsis "Archive generation of a Git worktree")
+    ;(description "Archive generation of a worktree.  Part of Gitoxide a pure
+;Rust implementation of Git.")
+   ; (license (list license:expat license:asl2.0))
+    ))
 
 (define-public rust-gix-archive-0.7
   (package



reply via email to

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