all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: rsiddharth <s@ricketyspace.net>
To: 30892@debbugs.gnu.org
Cc: rsiddharth <s@ricketyspace.net>
Subject: [bug#30892] [PATCH 15/37] gnu: Add ghc-yesod-core.
Date: Wed, 21 Mar 2018 03:44:53 +0000	[thread overview]
Message-ID: <20180321034515.3664-16-s@ricketyspace.net> (raw)
In-Reply-To: <20180321034005.2975-1-s@ricketyspace.net>

* gnu/packages/haskell-web.scm
(ghc-yesod-core): New variable.
---
 gnu/packages/haskell-web.scm | 70 ++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 70 insertions(+)

diff --git a/gnu/packages/haskell-web.scm b/gnu/packages/haskell-web.scm
index 8af115ff4..c6c85d8ed 100644
--- a/gnu/packages/haskell-web.scm
+++ b/gnu/packages/haskell-web.scm
@@ -988,3 +988,73 @@ client-side cookie")
 encryption and Skein-MAC-512-256 authentication.  Uses Base64 encoding to
 avoid any issues with characters.")
     (license license:expat)))
+
+(define-public ghc-yesod-core
+  (package
+    (name "ghc-yesod-core")
+    (version "1.4.37")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://hackage.haskell.org/package/"
+                           "yesod-core-" version "/"
+                           "yesod-core-" version ".tar.gz"))
+       (sha256
+        (base32
+         "0ww8hl0cx2g58zrdx3j6d5m2xwhssbajdqws1xk6rzl7rpfm1b9j"))))
+    (build-system haskell-build-system)
+    (inputs `(("ghc-wai" ,ghc-wai)
+              ("ghc-extra" ,ghc-extra)
+              ("ghc-text" ,ghc-text)
+              ("ghc-shakespeare" ,ghc-shakespeare)
+              ("ghc-blaze-builder" ,ghc-blaze-builder)
+              ("ghc-mtl" ,ghc-mtl)
+              ("ghc-clientsession" ,ghc-clientsession)
+              ("ghc-random" ,ghc-random)
+              ("ghc-cereal" ,ghc-cereal)
+              ("ghc-old-locale" ,ghc-old-locale)
+              ("ghc-unordered-containers" ,ghc-unordered-containers)
+              ("ghc-monad-control" ,ghc-monad-control)
+              ("ghc-transformers-base" ,ghc-transformers-base)
+              ("ghc-cookie" ,ghc-cookie)
+              ("ghc-http-types" ,ghc-http-types)
+              ("ghc-case-insensitive" ,ghc-case-insensitive)
+              ("ghc-parsec" ,ghc-parsec)
+              ("ghc-vector" ,ghc-vector)
+              ("ghc-aeson" ,ghc-aeson)
+              ("ghc-fast-logger" ,ghc-fast-logger)
+              ("ghc-wai-logger" ,ghc-wai-logger)
+              ("ghc-monad-logger" ,ghc-monad-logger)
+              ("ghc-conduit" ,ghc-conduit)
+              ("ghc-resourcet" ,ghc-resourcet)
+              ("ghc-lifted-base" ,ghc-lifted-base)
+              ("ghc-blaze-html" ,ghc-blaze-html)
+              ("ghc-blaze-markup" ,ghc-blaze-markup)
+              ("ghc-data-default" ,ghc-data-default)
+              ("ghc-safe" ,ghc-safe)
+              ("ghc-warp" ,ghc-warp)
+              ("ghc-unix-compat" ,ghc-unix-compat)
+              ("ghc-conduit-extra" ,ghc-conduit-extra)
+              ("ghc-exceptions" ,ghc-exceptions)
+              ("ghc-deepseq-generics" ,ghc-deepseq-generics)
+              ("ghc-mwc-random" ,ghc-mwc-random)
+              ("ghc-primitive" ,ghc-primitive)
+              ("ghc-word8" ,ghc-word8)
+              ("ghc-auto-update" ,ghc-auto-update)
+              ("ghc-semigroups" ,ghc-semigroups)
+              ("ghc-byteable" ,ghc-byteable)))
+    (native-inputs `(("ghc-hspec" ,ghc-hspec)
+                     ("ghc-path-pieces" ,ghc-path-pieces)
+                     ("ghc-hunit" ,ghc-hunit)
+                     ("ghc-hspec-expectations" ,ghc-hspec-expectations)
+                     ("ghc-quickcheck" ,ghc-quickcheck)
+                     ("ghc-network" ,ghc-network)
+                     ("ghc-async" ,ghc-async)
+                     ("ghc-streaming-commons" ,ghc-streaming-commons)
+                     ("ghc-wai-extra" ,ghc-wai-extra)))
+    (home-page "https://www.yesodweb.com")
+    (synopsis "Core package for the Yesod web framework")
+    (description "This Haskell package provides all core functionality, for
+Yesod, on which other packages can be built.  It provides dispatch, handler
+functions, widgets, etc.")
+    (license license:expat)))
-- 
2.16.2

  parent reply	other threads:[~2018-03-21  3:46 UTC|newest]

Thread overview: 40+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-03-21  3:40 [bug#30892] [PATCH 00/37] Add ghc-yesod and its dependencies rsiddharth
2018-03-21  3:44 ` [bug#30892] [PATCH 01/37] gnu: ghc-chunked-data: Update inputs rsiddharth
2018-03-21  3:44 ` [bug#30892] [PATCH 02/37] gnu: Add ghc-stm-chans rsiddharth
2018-03-21  3:44 ` [bug#30892] [PATCH 03/37] gnu: Add ghc-monad-loops rsiddharth
2018-03-21  3:44 ` [bug#30892] [PATCH 04/37] gnu: Add ghc-monad-logger rsiddharth
2018-03-21  3:44 ` [bug#30892] [PATCH 05/37] gnu: Add ghc-shakespeare rsiddharth
2018-03-21  3:44 ` [bug#30892] [PATCH 06/37] gnu: Add ghc-path-pieces rsiddharth
2018-03-21  3:44 ` [bug#30892] [PATCH 07/37] gnu: Add ghc-skein rsiddharth
2018-03-21  3:44 ` [bug#30892] [PATCH 08/37] gnu: Add ghc-securemem rsiddharth
2018-03-21  3:44 ` [bug#30892] [PATCH 09/37] gnu: Add ghc-crypto-cipher-types rsiddharth
2018-03-21  3:44 ` [bug#30892] [PATCH 10/37] gnu: Add ghc-crypto-cipher-tests rsiddharth
2018-03-21  3:44 ` [bug#30892] [PATCH 11/37] gnu: Add ghc-cipher-aes rsiddharth
2018-03-21  3:44 ` [bug#30892] [PATCH 12/37] gnu: Add ghc-crypto-random rsiddharth
2018-03-21  3:44 ` [bug#30892] [PATCH 13/37] gnu: Add ghc-cprng-aes rsiddharth
2018-03-21  3:44 ` [bug#30892] [PATCH 14/37] gnu: Add ghc-clientsession rsiddharth
2018-03-21  3:44 ` rsiddharth [this message]
2018-03-21  3:44 ` [bug#30892] [PATCH 16/37] gnu: Add ghc-resource-pool rsiddharth
2018-03-21  3:44 ` [bug#30892] [PATCH 17/37] gnu: Add ghc-attoparsec-iso8601 rsiddharth
2018-03-21  3:44 ` [bug#30892] [PATCH 18/37] gnu: Add ghc-th-lift-instances rsiddharth
2018-03-21  3:44 ` [bug#30892] [PATCH 19/37] gnu: Add ghc-generics-sop rsiddharth
2018-03-21  3:44 ` [bug#30892] [PATCH 20/37] gnu: Add ghc-uri-bytestring rsiddharth
2018-03-21  3:44 ` [bug#30892] [PATCH 21/37] gnu: Add ghc-time-locale-compat rsiddharth
2018-03-21  3:45 ` [bug#30892] [PATCH 22/37] gnu: Add ghc-http-api-data rsiddharth
2018-03-21  3:45 ` [bug#30892] [PATCH 23/37] gnu: Add ghc-persistent rsiddharth
2018-03-21  3:45 ` [bug#30892] [PATCH 24/37] gnu: Add ghc-aeson-compat rsiddharth
2018-03-21  3:45 ` [bug#30892] [PATCH 25/37] gnu: Add ghc-persistent-template rsiddharth
2018-03-21  3:45 ` [bug#30892] [PATCH 26/37] gnu: Add ghc-unliftio-core rsiddharth
2018-03-21  3:45 ` [bug#30892] [PATCH 27/37] gnu: Add ghc-microlens rsiddharth
2018-03-21  3:45 ` [bug#30892] [PATCH 28/37] gnu: Add ghc-microlens-th rsiddharth
2018-03-21  3:45 ` [bug#30892] [PATCH 29/37] gnu: Add ghc-unliftio rsiddharth
2018-03-21  3:45 ` [bug#30892] [PATCH 30/37] gnu: Add ghc-persistent-sqlite rsiddharth
2018-03-21  3:45 ` [bug#30892] [PATCH 31/37] gnu: ghc-math-functions: Disable tests rsiddharth
2018-03-21  3:45 ` [bug#30892] [PATCH 32/37] gnu: ghc-psqueues: " rsiddharth
2018-03-21  3:45 ` [bug#30892] [PATCH 33/37] gnu: Add ghc-yesod-persistent rsiddharth
2018-03-21  3:45 ` [bug#30892] [PATCH 34/37] gnu: Add ghc-email-validate rsiddharth
2018-03-21  3:45 ` [bug#30892] [PATCH 35/37] gnu: Add ghc-yesod-form rsiddharth
2018-03-21  3:45 ` [bug#30892] [PATCH 36/37] gnu: ghc-conduit-extra: Update to 1.1.14 rsiddharth
2018-03-21  3:45 ` [bug#30892] [PATCH 37/37] gnu: Add ghc-yesod rsiddharth
2018-03-31 17:54 ` bug#30892: [PATCH 00/37] Add ghc-yesod and its dependencies Ludovic Courtès
2018-04-08 14:27   ` [bug#30892] " rsiddharth

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20180321034515.3664-16-s@ricketyspace.net \
    --to=s@ricketyspace.net \
    --cc=30892@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.