diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-10-24 09:11:32 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-11-28 07:58:28 +0200 |
commit | 1ada9f712b725ac92d3463201f26050146010746 (patch) | |
tree | 642401b8f445de256b154322f1494eb49cb4f9c5 /gnu | |
parent | 09be708a360082961466f43884891ff7057f5849 (diff) | |
download | guix-1ada9f712b725ac92d3463201f26050146010746.tar.gz |
gnu: Add rust-gix-negotiate-0.2.
* gnu/packages/crates-io.scm (rust-gix-negotiate-0.2): New variable. Change-Id: I0f01a7e3ee03e93a568bb4268209413b0428c413
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/crates-io.scm | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index f2f263012a..f5c35868d7 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -29844,6 +29844,36 @@ 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-negotiate-0.2 + (package + (name "rust-gix-negotiate") + (version "0.2.1") + (source + (origin + (method url-fetch) + (uri (crate-uri "gix-negotiate" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "137hyq036adi5kapw98vd9b0087lxljfkjaz81glmr0jx7qkwp4l")))) + (build-system cargo-build-system) + (arguments + `(#:tests? #f ; use of undeclared crate or module `gix_testtools` + #:cargo-inputs + (("rust-bitflags" ,rust-bitflags-2) + ("rust-gix-commitgraph" ,rust-gix-commitgraph-0.16) + ("rust-gix-hash" ,rust-gix-hash-0.11) + ("rust-gix-object" ,rust-gix-object-0.30) + ("rust-gix-revision" ,rust-gix-revision-0.15) + ("rust-smallvec" ,rust-smallvec-1) + ("rust-thiserror" ,rust-thiserror-1)))) + (home-page "https://github.com/Byron/gitoxide") + (synopsis + "Crate of the gitoxide project implementing negotiation algorithms") + (description + "This package provides a crate of the gitoxide project implementing +negotiation algorithms.") + (license (list license:expat license:asl2.0)))) + (define-public rust-gix-object-0.30 (package (name "rust-gix-object") |