me
/
guix
Archived
1
0
Fork 0

gnu: Add libevent-with-openssl.

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

Co-authored-by: Ludovic Courtès <ludo@gnu.org>
master
Thomas Albers 2022-10-13 17:43:33 +02:00 committed by Ludovic Courtès
parent 1de153c11f
commit 9ed4251d70
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 9 additions and 0 deletions

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")