diff options
author | Steve George <steve@futurile.net> | 2023-11-09 19:38:03 +0000 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-11-28 07:59:45 +0200 |
commit | 0a0d5be599f5a99b374e8d83af44f790d2a60fc8 (patch) | |
tree | 907f27c82383bae374ec5c70ee2eca9aa331adca /gnu | |
parent | c470c771edfc077925121162bc8163017efe713b (diff) | |
download | guix-0a0d5be599f5a99b374e8d83af44f790d2a60fc8.tar.gz guix-0a0d5be599f5a99b374e8d83af44f790d2a60fc8.zip |
gnu: Add rust-gix-glob-0.13.
* gnu/packages/crates-io.scm (rust-gix-glob-0.13): New variable.
(rust-gix-glob-0.8): Inherit from rust-gix-glob-0.13.
Change-Id: I3999b479d8d08c658fadf0da4cbed63475555e34
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/crates-io.scm | 37 |
1 files changed, 29 insertions, 8 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index a144e6391d..58a4c29719 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -30853,8 +30853,36 @@ compile-time feature flags.") `gitoxide`.") (license (list license:expat license:asl2.0)))) +(define-public rust-gix-glob-0.13 + (package + (name "rust-gix-glob") + (version "0.13.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "gix-glob" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "17dix59mc93m8z97ywkgpssjsmjgl4cfkifja7vxql8jy62nxmx9")))) + (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.35) + ("rust-gix-path" ,rust-gix-path-0.10) + ("rust-serde" ,rust-serde-1)))) + (home-page "https://github.com/Byron/gitoxide") + (synopsis "Gitoxide project crate 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-glob-0.8 (package + (inherit rust-gix-glob-0.13) (name "rust-gix-glob") (version "0.8.0") (source @@ -30864,7 +30892,6 @@ compile-time feature flags.") (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 @@ -30873,13 +30900,7 @@ compile-time feature flags.") ("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)))) + ("rust-serde" ,rust-serde-1)))))) (define-public rust-gix-hash-0.13 (package |