unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: rsiddharth <s@ricketyspace.net>
To: 27367@debbugs.gnu.org
Cc: rsiddharth <s@ricketyspace.net>
Subject: [bug#27367] [PATCH 07/15] gnu: Add ghc-http2.
Date: Thu, 15 Jun 2017 01:23:52 +0000	[thread overview]
Message-ID: <20170615012400.8414-7-s@ricketyspace.net> (raw)
In-Reply-To: <20170615012400.8414-1-s@ricketyspace.net>

* gnu/packages/haskell.scm (ghc-http2): New variable.
---
 gnu/packages/haskell.scm | 36 ++++++++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)

diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm
index 539d08e45..e074cc27c 100644
--- a/gnu/packages/haskell.scm
+++ b/gnu/packages/haskell.scm
@@ -8513,4 +8513,40 @@ Typical applications of Priority Search Queues include:
 matching patterns against file paths.")
     (license license:bsd-3)))
 
+(define-public ghc-http2
+  (package
+    (name "ghc-http2")
+    (version "1.6.3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://hackage.haskell.org/package/"
+                           "http2-" version "/"
+                           "http2-" version ".tar.gz"))
+       (sha256
+        (base32
+         "0hww0rfsv6lqx62qzycbcqy5q6rh9k09qkyjkdm5m1sp1z50wqk1"))))
+    (build-system haskell-build-system)
+    (inputs
+     `(("ghc-bytestring-builder" ,ghc-bytestring-builder)
+       ("ghc-case-insensitive" ,ghc-case-insensitive)
+       ("ghc-aeson" ,ghc-aeson)
+       ("ghc-aeson-pretty" ,ghc-aeson-pretty)
+       ("ghc-hex" ,ghc-hex)
+       ("ghc-unordered-containers" ,ghc-unordered-containers)
+       ("ghc-vector" ,ghc-vector)
+       ("ghc-word8" ,ghc-word8)
+       ("ghc-psqueues" ,ghc-psqueues)
+       ("ghc-stm" ,ghc-stm)))
+       (native-inputs
+        `(("ghc-glob" ,ghc-glob)
+         ("ghc-hspec" ,ghc-hspec)
+         ("ghc-doctest" ,ghc-doctest)
+         ("hspec-discover" ,hspec-discover)))
+    (home-page "https://github.com/kazu-yamamoto/http2")
+    (synopsis "HTTP/2 library including frames, priority queues and HPACK")
+    (description "This package provides a HTTP/2.0 library including frames
+and HPACK.  Currently HTTP/2 16 framing and HPACK 10 is supported.")
+    (license license:bsd-3)))
+
 ;;; haskell.scm ends here
-- 
2.11.0

  parent reply	other threads:[~2017-06-15  1:26 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <handler.27367.B.149747697323437.ack@debbugs.gnu.org>
2017-06-15  1:23 ` [bug#27367] [PATCH 01/15] gnu: Add ghc-wai-conduit rsiddharth
2017-06-15  1:23   ` [bug#27367] [PATCH 02/15] gnu: Add ghc-http-date rsiddharth
2017-06-15  1:23   ` [bug#27367] [PATCH 03/15] gnu: Add ghc-simple-sendfile rsiddharth
2017-06-15  1:23   ` [bug#27367] [PATCH 04/15] gnu: Add ghc-hex rsiddharth
2017-06-15  1:23   ` [bug#27367] [PATCH 05/15] gnu: Add ghc-psqueues rsiddharth
2017-06-15  1:23   ` [bug#27367] [PATCH 06/15] gnu: Add ghc-glob rsiddharth
2017-06-15  1:23   ` rsiddharth [this message]
2017-06-15  1:23   ` [bug#27367] [PATCH 08/15] gnu: ghc-auto-update: Update to 0.1.4 rsiddharth
2017-06-15  1:23   ` [bug#27367] [PATCH 09/15] gnu: ghc-wai: Update to 3.2.1.1 rsiddharth
2017-06-15  1:23   ` [bug#27367] [PATCH 10/15] gnu: ghc-wai-extra: Update to 3.0.13.1 rsiddharth
2017-06-15  1:23   ` [bug#27367] [PATCH 11/15] gnu: Add ghc-warp rsiddharth
2017-06-15  1:23   ` [bug#27367] [PATCH 12/15] gnu: Add ghc-warp-tls rsiddharth
2017-06-15  1:23   ` [bug#27367] [PATCH 13/15] gnu: ghc-http-client: Update to 0.5.6.1 rsiddharth
2017-06-15  1:23   ` [bug#27367] [PATCH 14/15] gnu: ghc-http-client-tls: Update to 0.3.4.1 rsiddharth
2017-06-15  1:24   ` [bug#27367] [PATCH 15/15] gnu: Add ghc-http-conduit rsiddharth
2017-06-16  8:26   ` [bug#27367] [PATCH 01/15] gnu: Add ghc-wai-conduit Ludovic Courtès

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20170615012400.8414-7-s@ricketyspace.net \
    --to=s@ricketyspace.net \
    --cc=27367@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).