[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#38423] [PATCH 10/49] gnu: Add ghc-wai-middleware-static.
From: |
Robert Vollmert |
Subject: |
[bug#38423] [PATCH 10/49] gnu: Add ghc-wai-middleware-static. |
Date: |
Fri, 29 Nov 2019 12:37:12 +0100 |
* gnu/packages/haskell-web.scm (ghc-wai-middleware-static): New package.
---
gnu/packages/haskell-web.scm | 38 ++++++++++++++++++++++++++++++++++++
1 file changed, 38 insertions(+)
diff --git a/gnu/packages/haskell-web.scm b/gnu/packages/haskell-web.scm
index 7f54568399..ef43e8222d 100644
--- a/gnu/packages/haskell-web.scm
+++ b/gnu/packages/haskell-web.scm
@@ -1641,3 +1641,41 @@ requirements of downstream users (e.g. Debian).")
"This package provides an implemenation of Cross-Origin resource sharing
(CORS) for Wai that aims to be compliant with http://www.w3.org/TR/cors.")
(license license:expat)))
+
+(define-public ghc-wai-middleware-static
+ (package
+ (name "ghc-wai-middleware-static")
+ (version "0.8.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+
"https://hackage.haskell.org/package/wai-middleware-static/wai-middleware-static-"
+ version
+ ".tar.gz"))
+ (sha256
+ (base32
+ "1z5yapcf8j9w71f2na30snmalsajlyi8an2f9qrjdmajabyykr0b"))))
+ (build-system haskell-build-system)
+ (inputs
+ `(("ghc-cryptonite" ,ghc-cryptonite)
+ ("ghc-memory" ,ghc-memory)
+ ("ghc-expiring-cache-map"
+ ,ghc-expiring-cache-map)
+ ("ghc-http-types" ,ghc-http-types)
+ ("ghc-mime-types" ,ghc-mime-types)
+ ("ghc-old-locale" ,ghc-old-locale)
+ ("ghc-semigroups" ,ghc-semigroups)
+ ("ghc-wai" ,ghc-wai)))
+ (arguments
+ `(#:cabal-revision
+ ("2"
+ "17vq38dh7x1kqzfwla1s0rldd5hzm5mcrx49sjlzy8b66gd2n3ac")))
+ (home-page
+ "https://github.com/scotty-web/wai-middleware-static")
+ (synopsis
+ "WAI middleware that serves requests to static files.")
+ (description
+ "WAI middleware that intercepts requests to static files and serves
+them if they exist.")
+ (license license:bsd-3)))
--
2.21.0 (Apple Git-122.2)
- [bug#38423] add postgrest, Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 01/49] gnu: Add ghc-text-printer., Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 06/49] gnu: Add ghc-deferred-folds., Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 14/49] gnu: Add ghc-protolude., Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 07/49] gnu: Add ghc-websockets., Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 10/49] gnu: Add ghc-wai-middleware-static.,
Robert Vollmert <=
- [bug#38423] [PATCH 12/49] gnu: Add ghc-expiring-cache-map., Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 03/49] gnu: Add ghc-text-builder., Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 21/49] gnu: Add ghc-data-endian., Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 05/49] gnu: Add ghc-data-checked., Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 18/49] gnu: Add ghc-only., Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 11/49] gnu: Add ghc-wai-app-static., Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 09/49] gnu: Add ghc-wai-cors., Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 08/49] gnu: Add ghc-wai-websockets., Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 04/49] gnu: Add ghc-text-short., Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 24/49] gnu: Add ghc-directory., Robert Vollmert, 2019/11/29