diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2022-10-24 14:31:29 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2022-10-24 17:40:42 +0300 |
commit | 24964f7360102c661b109d7c17305850304cfaf1 (patch) | |
tree | f928798ac9471c3e4978fb4dcb3680dc8f210e50 | |
parent | 7ace10db60c6a3dd4f96071ca2ffe31a6b06e20a (diff) |
gnu: rust-cargo-edit: Add missing inputs.
* gnu/packages/rust-apps.scm (rust-cargo-edit)[native-inputs]: Add
pkg-config.
[inputs]: Add libgit2-1.3, libssh2, openssl, zlib.
-rw-r--r-- | gnu/packages/rust-apps.scm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm index f843675186..f8b499f572 100644 --- a/gnu/packages/rust-apps.scm +++ b/gnu/packages/rust-apps.scm @@ -932,6 +932,13 @@ browsers.") ("rust-assert-fs" ,rust-assert-fs-1) ("rust-predicates" ,rust-predicates-2) ("rust-pretty-assertions" ,rust-pretty-assertions-0.6)))) + (native-inputs + (list pkg-config)) + (inputs + (list libgit2-1.3 + libssh2 + openssl + zlib)) (home-page "https://github.com/killercup/cargo-edit") (synopsis "Add and remove dependencies from the command line") (description |