mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05: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:
parent
1de153c11f
commit
9ed4251d70
1 changed files with 9 additions and 0 deletions
|
@ -76,6 +76,15 @@ (define-public libevent
|
|||
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")
|
||||
|
|
Loading…
Reference in a new issue