diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-10-24 09:11:23 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-11-28 07:58:27 +0200 |
commit | 6681f05765d4c3264b7b5d61c65af8c86b115137 (patch) | |
tree | a769aaf74ca4b8717f2855c3a3a9e686357f985f /gnu | |
parent | 0783fabb50e5d29385afc8aedd6853dd2e38235e (diff) | |
download | guix-6681f05765d4c3264b7b5d61c65af8c86b115137.tar.gz |
gnu: Add rust-gix-packetline-0.16.
* gnu/packages/crates-io.scm (rust-gix-packetline-0.16): New variable. Change-Id: If6cc41d395a62747dbfa1ddda6d83093255065d6
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/crates-io.scm | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 4e35266eec..610dd5e58c 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -29844,6 +29844,39 @@ 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-packetline-0.16 + (package + (name "rust-gix-packetline") + (version "0.16.7") + (source + (origin + (method url-fetch) + (uri (crate-uri "gix-packetline" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1ayp00k4a6qgjjyrd2rmzxyx0n8h36dxscjn1pzil5b4x6qq90wa")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-bstr" ,rust-bstr-1) + ("rust-document-features" ,rust-document-features-0.2) + ("rust-faster-hex" ,rust-faster-hex-0.8) + ("rust-futures-io" ,rust-futures-io-0.3) + ("rust-futures-lite" ,rust-futures-lite-1) + ("rust-pin-project-lite" ,rust-pin-project-lite-0.2) + ("rust-serde" ,rust-serde-1) + ("rust-thiserror" ,rust-thiserror-1)) + #:cargo-development-inputs + (("rust-async-std" ,rust-async-std-1) + ("rust-maybe-async" ,rust-maybe-async-0.2)))) + (home-page "https://github.com/Byron/gitoxide") + (synopsis + "Crate of the gitoxide project implementing the pkt-line serialization format") + (description + "This package provides a crate of the gitoxide project implementing the +pkt-line serialization format.") + (license (list license:expat license:asl2.0)))) + (define-public rust-gix-path-0.8 (package (name "rust-gix-path") |