diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2017-11-10 08:20:19 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-03-14 18:10:55 +0100 |
commit | 1300e4ee5bf97e7687aa0fa5497d87cf1afaa813 (patch) | |
tree | 96350506e0b837fcfba7a60dfa01902599bfa969 /gnu | |
parent | 8fdc843f26fd0cdbfb3fca679b6cc9f2b4feacc9 (diff) | |
download | patches-1300e4ee5bf97e7687aa0fa5497d87cf1afaa813.tar patches-1300e4ee5bf97e7687aa0fa5497d87cf1afaa813.tar.gz |
gnu: curl: Add HTTP/2 support.
* gnu/packages/curl.scm (curl)[inputs]: Add nghttp2.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/curl.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/curl.scm b/gnu/packages/curl.scm index fbf177d9da..698ae5d301 100644 --- a/gnu/packages/curl.scm +++ b/gnu/packages/curl.scm @@ -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) |