mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add rust-openssl-probe.
* gnu/packages/crates-io.scm (rust-openssl-probe): New variable.
This commit is contained in:
parent
5b15d635ed
commit
f51c47b528
1 changed files with 21 additions and 0 deletions
|
@ -1558,6 +1558,27 @@ (define-public rust-num-traits
|
|||
(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")
|
||||
|
|
Loading…
Reference in a new issue