me
/
guix
Archived
1
0
Fork 0

gnu: curl: Add HTTP/2 support.

* gnu/packages/curl.scm (curl)[inputs]: Add nghttp2.
master
Tobias Geerinckx-Rice 2017-11-10 08:20:19 +01:00
parent 8fdc843f26
commit 1300e4ee5b
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 4 additions and 2 deletions

View File

@ -6,7 +6,7 @@
;;; Copyright © 2016, 2017 Leo Famulari <leo@famulari.name>
;;; Copyright © 2017 Marius Bakke <mbakke@fastmail.com>
;;; Copyright © 2017 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
;;;
;;; This file is part of GNU Guix.
;;;
@ -42,7 +42,8 @@
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages python)
#:use-module (gnu packages ssh)
#:use-module (gnu packages tls))
#:use-module (gnu packages tls)
#:use-module (gnu packages web))
(define-public curl
(package
@ -64,6 +65,7 @@
("libidn" ,libidn)
("libssh2" ,libssh2)
("openldap" ,openldap)
("nghttp2" ,nghttp2)
("zlib" ,zlib)))
(native-inputs
`(("perl" ,perl)