[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#30892] [PATCH 37/37] gnu: Add ghc-yesod.
From: |
rsiddharth |
Subject: |
[bug#30892] [PATCH 37/37] gnu: Add ghc-yesod. |
Date: |
Wed, 21 Mar 2018 03:45:15 +0000 |
* gnu/packages/haskell-web.scm (ghc-yesod): New variable.
---
gnu/packages/haskell-web.scm | 45 ++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 45 insertions(+)
diff --git a/gnu/packages/haskell-web.scm b/gnu/packages/haskell-web.scm
index df5bc0f21..1f19f82f3 100644
--- a/gnu/packages/haskell-web.scm
+++ b/gnu/packages/haskell-web.scm
@@ -1134,3 +1134,48 @@ as text, number, time, checkbox, select, textarea, etc
through the
@code{Yesod.Form.Fields} module. Also, there is @code{Yesod.Form.Nic} module
providing richtext field using Nic editor. ")
(license license:expat)))
+
+(define-public ghc-yesod
+ (package
+ (name "ghc-yesod")
+ (version "1.4.5")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://hackage.haskell.org/package/yesod/yesod-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "1sg66nq8yaas2m5nqsdrxricvcizd1ik02zqk60sxh3wna08fz16"))))
+ (build-system haskell-build-system)
+ (inputs
+ `(("ghc-yesod-core" ,ghc-yesod-core)
+ ("ghc-yesod-persistent" ,ghc-yesod-persistent)
+ ("ghc-yesod-form" ,ghc-yesod-form)
+ ("ghc-monad-control" ,ghc-monad-control)
+ ("ghc-wai" ,ghc-wai)
+ ("ghc-wai-extra" ,ghc-wai-extra)
+ ("ghc-warp" ,ghc-warp)
+ ("ghc-blaze-html" ,ghc-blaze-html)
+ ("ghc-blaze-markup" ,ghc-blaze-markup)
+ ("ghc-aeson" ,ghc-aeson)
+ ("ghc-data-default-class" ,ghc-data-default-class)
+ ("ghc-unordered-containers" ,ghc-unordered-containers)
+ ("ghc-yaml" ,ghc-yaml)
+ ("ghc-text" ,ghc-text)
+ ("ghc-monad-logger" ,ghc-monad-logger)
+ ("ghc-fast-logger" ,ghc-fast-logger)
+ ("ghc-conduit" ,ghc-conduit)
+ ("ghc-conduit-extra" ,ghc-conduit-extra)
+ ("ghc-resourcet" ,ghc-resourcet)
+ ("ghc-shakespeare" ,ghc-shakespeare)
+ ("ghc-streaming-commons" ,ghc-streaming-commons)
+ ("ghc-wai-logger" ,ghc-wai-logger)
+ ("ghc-semigroups" ,ghc-semigroups)))
+ (home-page "https://www.yesodweb.com")
+ (synopsis "Framework for creating type-safe, RESTful web applications")
+ (description "The Haskell package package groups together the various
+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)))
--
2.16.2
- [bug#30892] [PATCH 27/37] gnu: Add ghc-microlens., (continued)
- [bug#30892] [PATCH 27/37] gnu: Add ghc-microlens., rsiddharth, 2018/03/20
- [bug#30892] [PATCH 31/37] gnu: ghc-math-functions: Disable tests., rsiddharth, 2018/03/20
- [bug#30892] [PATCH 29/37] gnu: Add ghc-unliftio., rsiddharth, 2018/03/20
- [bug#30892] [PATCH 17/37] gnu: Add ghc-attoparsec-iso8601., rsiddharth, 2018/03/20
- [bug#30892] [PATCH 26/37] gnu: Add ghc-unliftio-core., rsiddharth, 2018/03/20
- [bug#30892] [PATCH 32/37] gnu: ghc-psqueues: Disable tests., rsiddharth, 2018/03/20
- [bug#30892] [PATCH 33/37] gnu: Add ghc-yesod-persistent., rsiddharth, 2018/03/20
- [bug#30892] [PATCH 19/37] gnu: Add ghc-generics-sop., rsiddharth, 2018/03/20
- [bug#30892] [PATCH 34/37] gnu: Add ghc-email-validate., rsiddharth, 2018/03/20
- [bug#30892] [PATCH 35/37] gnu: Add ghc-yesod-form., rsiddharth, 2018/03/20
- [bug#30892] [PATCH 37/37] gnu: Add ghc-yesod.,
rsiddharth <=
- [bug#30892] [PATCH 23/37] gnu: Add ghc-persistent., rsiddharth, 2018/03/20
- [bug#30892] [PATCH 21/37] gnu: Add ghc-time-locale-compat., rsiddharth, 2018/03/20
- [bug#30892] [PATCH 25/37] gnu: Add ghc-persistent-template., rsiddharth, 2018/03/20
- [bug#30892] [PATCH 36/37] gnu: ghc-conduit-extra: Update to 1.1.14., rsiddharth, 2018/03/20
- [bug#30892] [PATCH 28/37] gnu: Add ghc-microlens-th., rsiddharth, 2018/03/20
- [bug#30892] [PATCH 30/37] gnu: Add ghc-persistent-sqlite., rsiddharth, 2018/03/20
- bug#30892: [PATCH 00/37] Add ghc-yesod and its dependencies., Ludovic Courtès, 2018/03/31