1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-05-27 19:41:50 +02:00

gnu: Add libevent-with-openssl.

* gnu/packages/libevent.scm (libevent-with-openssl): New variable.

Co-authored-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Thomas Albers
2022-10-13 17:43:33 +02:00
committed by Ludovic Courtès
parent 1de153c11f
commit 9ed4251d70
+9
View File
@@ -76,6 +76,15 @@ then add or remove events dynamically without having to change the event
loop.")
(license bsd-3)))
(define-public libevent-with-openssl
(package/inherit libevent
(name "libevent-with-openssl")
(inputs (modify-inputs (package-inputs libevent)
(prepend openssl)))
(arguments
;; This skips some of the tests which fail on armhf and aarch64.
'(#:configure-flags '("--disable-libevent-regress")))))
(define-public libev
(package
(name "libev")