From 0409a54069ab587d44077716ca9efc02ef7abfaf Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Tue, 24 Oct 2023 09:10:42 +0300 Subject: [PATCH] gnu: Add rust-gix-worktree-0.18. * gnu/packages/crates-io.scm (rust-gix-worktree-0.18): New variable. Change-Id: I3c446f4c195d17db2cc025727f89439b9b79e47e --- gnu/packages/crates-io.scm | 40 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 6ef9451d71..b49aa11713 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -29844,6 +29844,46 @@ libcurl, which is intended to be used with the @code{git2} crate.") ("rust-log" ,rust-log-0.4) ("rust-url" ,rust-url-2)))))) +(define-public rust-gix-worktree-0.18 + (package + (name "rust-gix-worktree") + (version "0.18.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "gix-worktree" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1xjhxw6lmjhnmcnhajaks34dnsqgg7w7lf576hkl0m485sbav26k")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-bstr" ,rust-bstr-1) + ("rust-document-features" ,rust-document-features-0.2) + ("rust-filetime" ,rust-filetime-0.2) + ("rust-gix-attributes" ,rust-gix-attributes-0.13) + ("rust-gix-features" ,rust-gix-features-0.30) + ("rust-gix-fs" ,rust-gix-fs-0.2) + ("rust-gix-glob" ,rust-gix-glob-0.8) + ("rust-gix-hash" ,rust-gix-hash-0.11) + ("rust-gix-ignore" ,rust-gix-ignore-0.3) + ("rust-gix-index" ,rust-gix-index-0.17) + ("rust-gix-object" ,rust-gix-object-0.30) + ("rust-gix-path" ,rust-gix-path-0.8) + ("rust-io-close" ,rust-io-close-0.3) + ("rust-serde" ,rust-serde-1) + ("rust-thiserror" ,rust-thiserror-1)) + #:cargo-development-inputs + (("rust-symlink" ,rust-symlink-0.1) + ("rust-tempfile" ,rust-tempfile-3) + ("rust-walkdir" ,rust-walkdir-2)))) + (home-page "https://github.com/Byron/gitoxide") + (synopsis "Shared worktree related types and utilities") + (description + "This package provides a crate of the gitoxide project for shared worktree +related types and utilities.") + (license (list license:expat license:asl2.0)))) + (define-public rust-gjson-0.8 (package (name "rust-gjson")