mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: nghttp2: Remove jemalloc dependency for the Hurd.
* gnu/packages/web.scm (nghttp2)[inputs]: Remove jemalloc for the Hurd.
This commit is contained in:
parent
a9bcc64746
commit
111110038d
1 changed files with 4 additions and 1 deletions
|
@ -41,6 +41,7 @@
|
|||
;;; Copyright © 2020 Timotej Lazar <timotej.lazar@araneo.si>
|
||||
;;; Copyright © 2020 Alexandros Theodotou <alex@zrythm.org>
|
||||
;;; Copyright © 2020 Pierre Neidhardt <mail@ambrevar.xyz>
|
||||
;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -108,6 +109,7 @@ (define-module (gnu packages web)
|
|||
#:use-module (gnu packages gtk)
|
||||
#:use-module (gnu packages guile)
|
||||
#:use-module (gnu packages guile-xyz)
|
||||
#:use-module (gnu packages hurd)
|
||||
#:use-module (gnu packages java)
|
||||
#:use-module (gnu packages jemalloc)
|
||||
#:use-module (gnu packages image)
|
||||
|
@ -7024,7 +7026,8 @@ (define-public nghttp2
|
|||
;; Required to build the tools (i.e. without ‘--enable-lib-only’).
|
||||
`(("c-ares" ,c-ares)
|
||||
("jansson" ,jansson) ; for HPACK tools
|
||||
("jemalloc" ,jemalloc) ; fight nghttpd{,x} heap fragmentation
|
||||
,@(if (hurd-target?) '()
|
||||
`(("jemalloc" ,jemalloc))) ; fight nghttpd{,x} heap fragmentation
|
||||
("libev" ,libev)
|
||||
("libxml2" ,libxml2) ; for ‘nghttp -a’
|
||||
("openssl" ,openssl)))
|
||||
|
|
Loading…
Reference in a new issue