* gnu/packages/rust.scm (rust-openssl-probe): New variable. --- gnu/packages/rust.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+)
diff --git a/gnu/packages/rust.scm b/gnu/packages/rust.scm index 2a77ccb7c..7c44dd28b 100644 --- a/gnu/packages/rust.scm +++ b/gnu/packages/rust.scm @@ -752,3 +752,25 @@ and configuration of sockets.") (description "Bytes provides a utility library for working with bytes.") (license license:expat))) + +(define-public rust-openssl-probe + (package + (name "rust-openssl-probe") + (version "0.1.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "openssl-probe" version)) + (file-name + (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "0689h6rhzy6dypqr90lsxnf108nsnh952wsx7ggs70s48b44jvbm")))) + (build-system cargo-build-system) + (home-page "https://github.com/alexcrichton/openssl-probe") + (synopsis "Tool for helping to find SSL certificate locations on the system") + (description + "Openssl-probe probes the system for the directory in which +CA certificates should likely be found. This will only search known +system locations.") + (license (list license:expat license:asl2.0)))) -- 2.11.0