[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#45000] [PATCH 3/9] gnu: Add ghc-yesod-static.
From: |
Jonathan Frederickson |
Subject: |
[bug#45000] [PATCH 3/9] gnu: Add ghc-yesod-static. |
Date: |
Tue, 1 Dec 2020 23:55:34 -0500 |
* gnu/packages/haskell-web.scm (ghc-yesod-static): New variable.
---
gnu/packages/haskell-web.scm | 52 ++++++++++++++++++++++++++++++++++++
1 file changed, 52 insertions(+)
diff --git a/gnu/packages/haskell-web.scm b/gnu/packages/haskell-web.scm
index cd9d097751..02b885a587 100644
--- a/gnu/packages/haskell-web.scm
+++ b/gnu/packages/haskell-web.scm
@@ -1450,6 +1450,58 @@ Yesod related packages into one cohesive whole. This is
the version of Yesod,
whereas most of the core code lives in @code{ghc-yesod-core}.")
(license license:expat)))
+(define-public ghc-yesod-static
+ (package
+ (name "ghc-yesod-static")
+ (version "1.6.1.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://hackage.haskell.org/package/yesod-static/yesod-static-"
+ version
+ ".tar.gz"))
+ (sha256
+ (base32
+ "18f5hm9ncvkzl8bkn39cg841z0k5iqs5w45afsyk9y6k98pjd54p"))))
+ (build-system haskell-build-system)
+ (inputs
+ `(("ghc-async" ,ghc-async)
+ ("ghc-attoparsec" ,ghc-attoparsec)
+ ("ghc-base64-bytestring" ,ghc-base64-bytestring)
+ ("ghc-blaze-builder" ,ghc-blaze-builder)
+ ("ghc-conduit" ,ghc-conduit)
+ ("ghc-cryptonite" ,ghc-cryptonite)
+ ("ghc-cryptonite-conduit"
+ ,ghc-cryptonite-conduit)
+ ("ghc-css-text" ,ghc-css-text)
+ ("ghc-data-default" ,ghc-data-default)
+ ("ghc-file-embed" ,ghc-file-embed)
+ ("ghc-hashable" ,ghc-hashable)
+ ("ghc-hjsmin" ,ghc-hjsmin)
+ ("ghc-http-types" ,ghc-http-types)
+ ("ghc-memory" ,ghc-memory)
+ ("ghc-mime-types" ,ghc-mime-types)
+ ("ghc-unix-compat" ,ghc-unix-compat)
+ ("ghc-unordered-containers"
+ ,ghc-unordered-containers)
+ ("ghc-wai" ,ghc-wai)
+ ("ghc-wai-app-static" ,ghc-wai-app-static)
+ ("ghc-yesod-core" ,ghc-yesod-core)))
+ (native-inputs
+ `(("ghc-hspec" ,ghc-hspec)
+ ("ghc-yesod-test" ,ghc-yesod-test)
+ ("ghc-wai-extra" ,ghc-wai-extra)
+ ("ghc-hunit" ,ghc-hunit)
+ ("ghc-rio" ,ghc-rio)))
+ (home-page "http://www.yesodweb.com/")
+ (synopsis
+ "Static file serving subsite for Yesod Web Framework")
+ (description
+ "This package provides a static file serving subsite for the Yesod Web
+Framework.")
+ (license license:expat)))
+
(define-public ghc-yesod-test
(package
(name "ghc-yesod-test")
--
2.29.2
- [bug#45000] [PATCH 0/9] Build git-annex with assistant webapp enabled, Jonathan Frederickson, 2020/12/01
- [bug#45000] [PATCH 1/9] gnu: Add ghc-yesod-test., Jonathan Frederickson, 2020/12/01
- [bug#45000] [PATCH 2/9] gnu: Add ghc-wai-app-static., Jonathan Frederickson, 2020/12/01
- [bug#45000] [PATCH 3/9] gnu: Add ghc-yesod-static.,
Jonathan Frederickson <=
- [bug#45000] [PATCH 5/9] gnu: ghc-yesod-core: Update to 1.6.18.6., Jonathan Frederickson, 2020/12/01
- [bug#45000] [PATCH 6/9] gnu: Add ghc-hjsmin., Jonathan Frederickson, 2020/12/01
- [bug#45000] [PATCH 7/9] gnu: Add ghc-template-haskell., Jonathan Frederickson, 2020/12/01
- [bug#45000] [PATCH 4/9] gnu: Add ghc-cryptonite-conduit., Jonathan Frederickson, 2020/12/01
- [bug#45000] [PATCH 9/9] gnu: git-annex: Build with git-annex assistant webapp enabled., Jonathan Frederickson, 2020/12/01
- [bug#45000] [PATCH 8/9] gnu: Add ghc-boot-th., Jonathan Frederickson, 2020/12/01
- [bug#45000] [PATCH 0/9] Build git-annex with assistant webapp enabled, zimoun, 2020/12/02