[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
36/38: gnu: Add ghc-yesod-form.
From: |
Ludovic Courtès |
Subject: |
36/38: gnu: Add ghc-yesod-form. |
Date: |
Sat, 31 Mar 2018 13:53:27 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 6faa30c17c6d674256e9448d95efd9256b908881
Author: rsiddharth <address@hidden>
Date: Wed Mar 21 03:45:13 2018 +0000
gnu: Add ghc-yesod-form.
* gnu/packages/haskell-web.scm (ghc-yesod-form): New variable.
Signed-off-by: Ludovic Courtès <address@hidden>
---
gnu/packages/haskell-web.scm | 43 +++++++++++++++++++++++++++++++++++++++++++
1 file changed, 43 insertions(+)
diff --git a/gnu/packages/haskell-web.scm b/gnu/packages/haskell-web.scm
index 7735159..df5bc0f 100644
--- a/gnu/packages/haskell-web.scm
+++ b/gnu/packages/haskell-web.scm
@@ -1091,3 +1091,46 @@ functions, widgets, etc.")
(description "This Haskell package provides helpers for using Persistent
from Yesod.")
(license license:expat)))
+
+(define-public ghc-yesod-form
+ (package
+ (name "ghc-yesod-form")
+ (version "1.4.16")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://hackage.haskell.org/package/yesod-form/yesod-form-"
+ version
+ ".tar.gz"))
+ (sha256
+ (base32
+ "0lij3m5vn8nvh6y88r1dhk03xmmjwmjzazm307nc2wvc5fmx9p2j"))))
+ (build-system haskell-build-system)
+ (inputs
+ `(("ghc-yesod-core" ,ghc-yesod-core)
+ ("ghc-yesod-persistent" ,ghc-yesod-persistent)
+ ("ghc-shakespeare" ,ghc-shakespeare)
+ ("ghc-persistent" ,ghc-persistent)
+ ("ghc-data-default" ,ghc-data-default)
+ ("ghc-xss-sanitize" ,ghc-xss-sanitize)
+ ("ghc-blaze-builder" ,ghc-blaze-builder)
+ ("ghc-email-validate" ,ghc-email-validate)
+ ("ghc-text" ,ghc-text)
+ ("ghc-wai" ,ghc-wai)
+ ("ghc-blaze-html" ,ghc-blaze-html)
+ ("ghc-blaze-markup" ,ghc-blaze-markup)
+ ("ghc-attoparsec" ,ghc-attoparsec)
+ ("ghc-byteable" ,ghc-byteable)
+ ("ghc-aeson" ,ghc-aeson)
+ ("ghc-resourcet" ,ghc-resourcet)
+ ("ghc-semigroups" ,ghc-semigroups)
+ ("ghc-network-uri" ,ghc-network-uri)
+ ("ghc-hspec" ,ghc-hspec)))
+ (home-page "https://www.yesodweb.com")
+ (synopsis "Form handling support for Yesod Web Framework")
+ (description "This Haskell package provies a set of basic form inputs such
+as text, number, time, checkbox, select, textarea, etc through the
address@hidden module. Also, there is @code{Yesod.Form.Nic} module
+providing richtext field using Nic editor. ")
+ (license license:expat)))
- 18/38: gnu: Add ghc-attoparsec-iso8601., (continued)
- 18/38: gnu: Add ghc-attoparsec-iso8601., Ludovic Courtès, 2018/03/31
- 26/38: gnu: Add ghc-persistent-template., Ludovic Courtès, 2018/03/31
- 32/38: gnu: ghc-math-functions: Disable tests., Ludovic Courtès, 2018/03/31
- 31/38: gnu: Add ghc-persistent-sqlite., Ludovic Courtès, 2018/03/31
- 33/38: gnu: ghc-psqueues: Disable tests., Ludovic Courtès, 2018/03/31
- 34/38: gnu: Add ghc-yesod-persistent., Ludovic Courtès, 2018/03/31
- 37/38: gnu: ghc-conduit-extra: Update to 1.1.14., Ludovic Courtès, 2018/03/31
- 28/38: gnu: Add ghc-microlens., Ludovic Courtès, 2018/03/31
- 20/38: gnu: Add ghc-generics-sop., Ludovic Courtès, 2018/03/31
- 27/38: gnu: Add ghc-unliftio-core., Ludovic Courtès, 2018/03/31
- 36/38: gnu: Add ghc-yesod-form.,
Ludovic Courtès <=
- 35/38: gnu: Add ghc-email-validate., Ludovic Courtès, 2018/03/31