diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2019-09-05 17:54:47 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2019-09-06 15:46:00 +0300 |
commit | f51c47b528a7acf79dd189e18cebf841afaf4c30 (patch) | |
tree | 0d9d61009f7cbe8704c13efd18a7faf33f5f0aa7 /gnu | |
parent | 5b15d635eddda7708d68a224f4df50e1c866f92d (diff) | |
download | patches-f51c47b528a7acf79dd189e18cebf841afaf4c30.tar patches-f51c47b528a7acf79dd189e18cebf841afaf4c30.tar.gz |
gnu: Add rust-openssl-probe.
* gnu/packages/crates-io.scm (rust-openssl-probe): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/crates-io.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index d6a26fc119..f0a29486ad 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -1558,6 +1558,27 @@ implementation (which is unstable / requires nightly).") (license (list license:asl2.0 license:expat)))) +(define-public rust-openssl-probe + (package + (name "rust-openssl-probe") + (version "0.1.2") + (source + (origin + (method url-fetch) + (uri (crate-uri "openssl-probe" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1pijrdifgsdwd45b08c2g0dsmnhz7c3kmagb70839ngrd7d29bvp")))) + (build-system cargo-build-system) + (home-page "https://github.com/alexcrichton/openssl-probe") + (synopsis "Find SSL certificate locations") + (description + "This package provides a tool to find SSL certificate locations on the +system for OpenSSL.") + (license (list license:asl2.0 + license:expat)))) + (define-public rust-owning-ref (package (name "rust-owning-ref") |