gnu: ruby-eventmachine: Add openssl input.
While EventMachine will build without openssl present, attempting to use it to make any TLS-secured connections will crash at runtime, which is not very useful. This allows the build system to find and link OpenSSL and thus TLS will work at runtime. * gnu/packages/ruby.scm (ruby-eventmachine): Add openssl input. Signed-off-by: Ludovic Courtès <ludo@gnu.org>master
parent
409f538d65
commit
f8e260e5a2
|
@ -8722,6 +8722,8 @@ application.")
|
|||
(build-system ruby-build-system)
|
||||
(arguments
|
||||
'(#:tests? #f)) ; test suite tries to connect to google.com
|
||||
(inputs
|
||||
`(("openssl" ,openssl)))
|
||||
(native-inputs
|
||||
`(("ruby-rake-compiler" ,ruby-rake-compiler)))
|
||||
(synopsis "Single-threaded network event framework for Ruby")
|
||||
|
|
Reference in New Issue