[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
17/27: gnu: Add ghc-http-common.
From: |
guix-commits |
Subject: |
17/27: gnu: Add ghc-http-common. |
Date: |
Thu, 1 Aug 2019 12:07:12 -0400 (EDT) |
rob pushed a commit to branch wip-haskell-updates
in repository guix.
commit d1bfb199a7fca26bb6cb03b16eb92ed5e1594543
Author: Robert Vollmert <address@hidden>
Date: Mon Jul 15 10:32:31 2019 +0200
gnu: Add ghc-http-common.
* gnu/packages/haskell-web.scm (ghc-http-common): New package.
---
gnu/packages/haskell-web.scm | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
diff --git a/gnu/packages/haskell-web.scm b/gnu/packages/haskell-web.scm
index 6524762..4f70d57 100644
--- a/gnu/packages/haskell-web.scm
+++ b/gnu/packages/haskell-web.scm
@@ -1457,3 +1457,37 @@ library to hande the streaming IO. The API is optimized
for ease of use
for the rather common case of code needing to query web services and deal
with the result.")
(license license:bsd-3)))
+
+(define-public ghc-http-common
+ (package
+ (name "ghc-http-common")
+ (version "0.8.2.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://hackage.haskell.org/package/http-common/http-common-"
+ version
+ ".tar.gz"))
+ (sha256
+ (base32
+ "14s5a178sb2vm5k00rs21760mds5dz2gs10k9iyn22h01mxyf599"))))
+ (build-system haskell-build-system)
+ (inputs
+ `(("ghc-base64-bytestring" ,ghc-base64-bytestring)
+ ("ghc-blaze-builder" ,ghc-blaze-builder)
+ ("ghc-case-insensitive" ,ghc-case-insensitive)
+ ("ghc-network" ,ghc-network)
+ ("ghc-unordered-containers"
+ ,ghc-unordered-containers)))
+ (home-page
+ "https://github.com/afcowie/http-streams/")
+ (synopsis
+ "Common types for HTTP clients and servers")
+ (description
+ "Base types used by a variety of HTTP clients and servers.
+See http-streams Network.Http.Client or pipes-http Pipes.Http.Client
+for full documentation. You can import Network.Http.Types if you like,
+but both http-streams and pipes-http re-export this package's types and
+functions.")
+ (license license:bsd-3)))
- 27/27: gnu: Add ghc-concurrent-extra., (continued)
- 27/27: gnu: Add ghc-concurrent-extra., guix-commits, 2019/08/01
- 25/27: gnu: Add ghc-prettyclass., guix-commits, 2019/08/01
- 22/27: gnu: Add ghc-io-streams-haproxy., guix-commits, 2019/08/01
- 20/27: gnu: Add ghc-language-glsl., guix-commits, 2019/08/01
- 21/27: gnu: Add ghc-readable., guix-commits, 2019/08/01
- 04/27: Revert "gnu: ghc-ansi-wl-pprint: Use ghc-ansi-terminal-0.8.", guix-commits, 2019/08/01
- 08/27: gnu: ghc-validation: Downgrade to 1., guix-commits, 2019/08/01
- 10/27: gnu: Remove ghc-haddock-test., guix-commits, 2019/08/01
- 14/27: gnu: Add ghc-snap-core., guix-commits, 2019/08/01
- 13/27: gnu: ghc-trifecta: Disable tests., guix-commits, 2019/08/01
- 17/27: gnu: Add ghc-http-common.,
guix-commits <=
- 23/27: gnu: Add ghc-zlib-bindings., guix-commits, 2019/08/01
- 24/27: gnu: Add ghc-io-streams., guix-commits, 2019/08/01
- 26/27: gnu: Add ghc-threads., guix-commits, 2019/08/01