[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#38423] [PATCH 26/49] gnu: Add ghc-http-media.
From: |
Robert Vollmert |
Subject: |
[bug#38423] [PATCH 26/49] gnu: Add ghc-http-media. |
Date: |
Fri, 29 Nov 2019 12:37:28 +0100 |
* gnu/packages/haskell-web.scm (ghc-http-media): New variable.
---
gnu/packages/haskell-web.scm | 40 ++++++++++++++++++++++++++++++++++++
1 file changed, 40 insertions(+)
diff --git a/gnu/packages/haskell-web.scm b/gnu/packages/haskell-web.scm
index 87165be078..da52f1f24f 100644
--- a/gnu/packages/haskell-web.scm
+++ b/gnu/packages/haskell-web.scm
@@ -1724,3 +1724,43 @@ them if they exist.")
(synopsis "WAI application for static serving")
(description "WAI application for static serving.")
(license license:expat)))
+
+(define-public ghc-http-media
+ (package
+ (name "ghc-http-media")
+ (version "0.7.1.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://hackage.haskell.org/package/http-media/http-media-"
+ version
+ ".tar.gz"))
+ (sha256
+ (base32
+ "0kqjzvh5y8r6x5rw2kgd816w2963c6cbyw2qjvaj2mv59zxzqkrr"))))
+ (build-system haskell-build-system)
+ (inputs
+ `(("ghc-case-insensitive" ,ghc-case-insensitive)
+ ("ghc-utf8-string" ,ghc-utf8-string)))
+ (native-inputs
+ `(("ghc-quickcheck" ,ghc-quickcheck)
+ ("ghc-test-framework" ,ghc-test-framework)
+ ("ghc-test-framework-quickcheck2"
+ ,ghc-test-framework-quickcheck2)))
+ (arguments
+ `(#:cabal-revision
+ ("1"
+ "19py5pspx80gg679p9dzqr3iidflppxc1x4vkldamjkidyi406j8")))
+ (home-page "https://github.com/zmthy/http-media")
+ (synopsis
+ "Processing HTTP Content-Type and Accept headers")
+ (description
+ "This library is intended to be a comprehensive solution to parsing
+and selecting quality-indexed values in HTTP headers. It is capable of
+parsing both media types and language parameters from the Accept and Content
+header families, and can be extended to match against other accept headers
+as well. Selecting the appropriate header value is achieved by comparing
+a list of server options against the quality-indexed values supplied by
+the client.")
+ (license license:expat)))
--
2.21.0 (Apple Git-122.2)
- [bug#38423] [PATCH 41/49] gnu: Add ghc-hasql-pool., (continued)
- [bug#38423] [PATCH 41/49] gnu: Add ghc-hasql-pool., Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 47/49] gnu: Add ghc-jose., Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 17/49] gnu: Add ghc-bug., Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 34/49] gnu: Add ghc-heredoc., Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 40/49] gnu: Add ghc-hasql., Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 42/49] gnu: Add ghc-hasql-transaction., Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 38/49] gnu: Add ghc-postgresql-binary., Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 30/49] gnu: Add ghc-placeholders., Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 44/49] gnu: Add ghc-configurator-pg., Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 31/49] gnu: Add ghc-binary-parser., Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 26/49] gnu: Add ghc-http-media.,
Robert Vollmert <=