This is an automated email from the git hooks/post-receive script.
efraim pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new ceb508528f gnu: rust-cargo-c: Add missing input.
ceb508528f is described below
commit ceb508528fbc117b44acab0d57fef1afe6bd6603
Author: Efraim Flashner <[email protected]>
AuthorDate: Mon Jun 20 14:31:40 2022 +0300
gnu: rust-cargo-c: Add missing input.
This is a follow-up to 6f2df20b0f8555ab1568ad1d661cb6e737a4bb8f.
* gnu/packages/rust-apps.scm (rust-cargo-c)[inputs]: Add libgit2-1.3.
---
gnu/packages/rust-apps.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm
index 6d97e289c2..0d5034ffb7 100644
--- a/gnu/packages/rust-apps.scm
+++ b/gnu/packages/rust-apps.scm
@@ -1,6 +1,6 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2019, 2020 John Soo <[email protected]>
-;;; Copyright © 2019, 2020, 2021 Efraim Flashner <[email protected]>
+;;; Copyright © 2019-2022 Efraim Flashner <[email protected]>
;;; Copyright © 2020 Jakub Kądziołka <[email protected]>
;;; Copyright © 2020 Michael Rohleder <[email protected]>
;;; Copyright © 2020 Leo Famulari <[email protected]>
@@ -1571,7 +1571,7 @@ support for Rust.")
(native-inputs
(list pkg-config))
(inputs
- (list curl libssh2 openssl zlib))
+ (list curl libgit2-1.3 libssh2 openssl zlib))
(home-page "https://github.com/lu-zero/cargo-c")
(synopsis "Build and install C-compatible libraries")
(description