3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: nghttp2: Support for the Hurd.

* gnu/packages/web.scm (nghttp2)[inputs]: When compiling for the Hurd, include
openssl:static.
This commit is contained in:
Jan (janneke) Nieuwenhuizen 2020-06-28 15:22:43 +02:00
parent a7eaaec8c1
commit b1c894b53f
No known key found for this signature in database
GPG key ID: F3C1A0D9C1D65273

View file

@ -7232,7 +7232,10 @@ derivation by David Revoy from the original MonsterID by Andreas Gohr.")
`(("jemalloc" ,jemalloc))) ; fight nghttpd{,x} heap fragmentation
("libev" ,libev)
("libxml2" ,libxml2) ; for nghttp -a
("openssl" ,openssl)))
("openssl" ,openssl)
,@(if (hurd-target?)
`(("openssl-static" ,openssl "static"))
'())))
(arguments
`(#:configure-flags
(list (string-append "--libdir=" (assoc-ref %outputs "lib") "/lib")