From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55102) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dLJY0-000303-OF for guix-patches@gnu.org; Wed, 14 Jun 2017 21:26:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dLJXz-0001M2-PW for guix-patches@gnu.org; Wed, 14 Jun 2017 21:26:08 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:45681) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dLJXz-0001Ls-Lr for guix-patches@gnu.org; Wed, 14 Jun 2017 21:26:07 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dLJXz-0008SN-GC for guix-patches@gnu.org; Wed, 14 Jun 2017 21:26:07 -0400 Subject: [bug#27367] [PATCH 12/15] gnu: Add ghc-warp-tls. Resent-Message-ID: From: rsiddharth Date: Thu, 15 Jun 2017 01:23:57 +0000 Message-Id: <20170615012400.8414-12-s@ricketyspace.net> In-Reply-To: <20170615012400.8414-1-s@ricketyspace.net> References: <20170615012400.8414-1-s@ricketyspace.net> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 27367@debbugs.gnu.org Cc: rsiddharth * gnu/packages/haskell.scm (ghc-warp-tls): New variable. --- gnu/packages/haskell.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm index 4ea41c240..c3ebc4be0 100644 --- a/gnu/packages/haskell.scm +++ b/gnu/packages/haskell.scm @@ -8601,4 +8601,32 @@ and HPACK. Currently HTTP/2 16 framing and HPACK 10 is supported.") based WAI (Web Application Interface in Haskell).") (license license:expat))) +(define-public ghc-warp-tls + (package + (name "ghc-warp-tls") + (version "3.2.3") + (source + (origin + (method url-fetch) + (uri (string-append "https://hackage.haskell.org/package/" + "warp-tls-" version "/" + "warp-tls-" version ".tar.gz")) + (sha256 + (base32 + "14m2bzk5ivz9gdpxlcj6qnh46f2lycm1ybdjnfkj2876zrqwii7m")))) + (build-system haskell-build-system) + (inputs + `(("ghc-cryptonite" ,ghc-cryptonite) + ("ghc-data-default-class" ,ghc-data-default-class) + ("ghc-network" ,ghc-network) + ("ghc-streaming-commons" ,ghc-streaming-commons) + ("ghc-tls" ,ghc-tls) + ("ghc-wai" ,ghc-wai) + ("ghc-warp" ,ghc-warp))) + (home-page "http://github.com/yesodweb/wai") + (synopsis "SSL/TLS support for Warp") + (description "This package provides SSL/TLS support for Warp, +a WAI handler, via the native Haskell TLS implementation.") + (license license:expat))) + ;;; haskell.scm ends here -- 2.11.0