diff options
author | Steve George <steve@futurile.net> | 2024-10-02 20:58:12 +0100 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-11-28 11:04:52 +0200 |
commit | 47069fd4d0e7cbdc4e8f16ce99786c8c7f1dc296 (patch) | |
tree | b9f01f05ac83d81c0fcf894feb0841f4bb65c651 /gnu | |
parent | 01ffeda79b5382a065308edc5666fc26d2f63f8b (diff) | |
download | guix-47069fd4d0e7cbdc4e8f16ce99786c8c7f1dc296.tar.gz guix-47069fd4d0e7cbdc4e8f16ce99786c8c7f1dc296.zip |
gnu: Add rust-gix-ref-0.47.
* gnu/packages/crates-vcs.scm (rust-gix-ref-0.47): New variable.
(rust-gix-ref-0.40): Inherit from rust-gix-ref-0.47.
Change-Id: Ic29c491ece5ec5aab2123aca1e74b86b89ba93ab
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/crates-vcs.scm | 45 |
1 files changed, 38 insertions, 7 deletions
diff --git a/gnu/packages/crates-vcs.scm b/gnu/packages/crates-vcs.scm index 3c273a5f8a..363916f3ce 100644 --- a/gnu/packages/crates-vcs.scm +++ b/gnu/packages/crates-vcs.scm @@ -4391,8 +4391,45 @@ Rust implementation of Git.") quotations used by git.") (license (list license:expat license:asl2.0)))) +(define-public rust-gix-ref-0.47 + (package + (name "rust-gix-ref") + (version "0.47.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "gix-ref" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1r8i8fj7xgmp88qk1w7xc2gs7l8sb8y0azx5algskaprxc3883df")))) + (build-system cargo-build-system) + (arguments + `(#:tests? #f ;use of undeclared crate gix_testtools + #:cargo-inputs + (("rust-document-features" ,rust-document-features-0.2) + ("rust-gix-actor" ,rust-gix-actor-0.32) + ("rust-gix-features" ,rust-gix-features-0.38) + ("rust-gix-fs" ,rust-gix-fs-0.11) + ("rust-gix-hash" ,rust-gix-hash-0.14) + ("rust-gix-lock" ,rust-gix-lock-14) + ("rust-gix-object" ,rust-gix-object-0.44) + ("rust-gix-path" ,rust-gix-path-0.10) + ("rust-gix-tempfile" ,rust-gix-tempfile-14) + ("rust-gix-utils" ,rust-gix-utils-0.1) + ("rust-gix-validate" ,rust-gix-validate-0.9) + ("rust-memmap2" ,rust-memmap2-0.9) + ("rust-serde" ,rust-serde-1) + ("rust-thiserror" ,rust-thiserror-1) + ("rust-winnow" ,rust-winnow-0.6)))) + (home-page "https://github.com/Byron/gitoxide") + (synopsis "Part of Gitoxide, this crate handles Git references") + (description "This package provides a crate to handle git references. +Part of Gitoxide, a project to create a pure Rust Git implementation.") + (license (list license:expat license:asl2.0)))) + (define-public rust-gix-ref-0.40 (package + (inherit rust-gix-ref-0.47) (name "rust-gix-ref") (version "0.40.1") (source @@ -4402,7 +4439,6 @@ quotations used by git.") (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 "0j96yj1j6mr06qspgxjdssssbf7dzj2bxz5224sqz3b3hhcvvnb4")))) - (build-system cargo-build-system) (arguments `(#:tests? #f ; undeclared crate gix_testtools #:cargo-inputs (("rust-document-features" ,rust-document-features-0.2) @@ -4419,12 +4455,7 @@ quotations used by git.") ("rust-memmap2" ,rust-memmap2-0.9) ("rust-serde" ,rust-serde-1) ("rust-thiserror" ,rust-thiserror-1) - ("rust-winnow" ,rust-winnow-0.5)))) - (home-page "https://github.com/Byron/gitoxide") - (synopsis "Part of Gitoxide, this crate handles Git references") - (description "This package provides a crate to handle git references. -Part of Gitoxide, a project to create a pure Rust Git implementation.") - (license (list license:expat license:asl2.0)))) + ("rust-winnow" ,rust-winnow-0.5)))))) (define-public rust-gix-ref-0.39 (package |