diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-10-24 09:11:48 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-11-28 07:58:29 +0200 |
commit | 92fa52b79f5a6c34670f51ae812f46db7fdd3eb8 (patch) | |
tree | 43ce42c170385484e59d6078d24dbb50723d9df5 | |
parent | a8fea81952a67a3a99f12b9bd9ecb37dbc18713d (diff) | |
download | guix-92fa52b79f5a6c34670f51ae812f46db7fdd3eb8.tar.gz guix-92fa52b79f5a6c34670f51ae812f46db7fdd3eb8.zip |
gnu: Add rust-gix-glob-0.8.
* gnu/packages/crates-io.scm (rust-gix-glob-0.8): New variable.
Change-Id: Ifae8a18ccdcbbf26f509ac69e55722eae6578998
-rw-r--r-- | gnu/packages/crates-io.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 436272a716..59800ee922 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -29844,6 +29844,34 @@ 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-glob-0.8 + (package + (name "rust-gix-glob") + (version "0.8.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "gix-glob" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "13jm1anf9xkp0hpzv9va72b9003kmwflx0ni0fbhf7xbh0gdw2nd")))) + (build-system cargo-build-system) + (arguments + `(#:tests? #f ; no method named `trim_start` found for reference `&BStr` + #:cargo-inputs + (("rust-bitflags" ,rust-bitflags-2) + ("rust-bstr" ,rust-bstr-1) + ("rust-document-features" ,rust-document-features-0.2) + ("rust-gix-features" ,rust-gix-features-0.30) + ("rust-gix-path" ,rust-gix-path-0.8) + ("rust-serde" ,rust-serde-1)))) + (home-page "https://github.com/Byron/gitoxide") + (synopsis "Crate of the gitoxide project dealing with pattern matching") + (description + "This package provides a crate of the gitoxide project dealing with pattern +matching.") + (license (list license:expat license:asl2.0)))) + (define-public rust-gix-hash-0.11 (package (name "rust-gix-hash") |