guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

05/05: gnu: ruby-eventmachine: Add openssl input.


From: guix-commits
Subject: 05/05: gnu: ruby-eventmachine: Add openssl input.
Date: Tue, 26 Oct 2021 06:47:42 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit f8e260e5a2be2d2961bfdf7ad9b5b8da546c9f74
Author: Stephen Paul Weber <singpolyma@singpolyma.net>
AuthorDate: Wed Oct 6 12:55:56 2021 -0500

    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>
---
 gnu/packages/ruby.scm | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index e9db2cf..4a791eb 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -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")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]