unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Robert Vollmert <rob@vllmrt.net>
To: 36663@debbugs.gnu.org
Cc: Robert Vollmert <rob@vllmrt.net>
Subject: [bug#36663] [PATCH 01/14 v2] gnu: Add ghc-snap-core
Date: Mon, 15 Jul 2019 15:13:24 +0200	[thread overview]
Message-ID: <20190715131323.74692-1-rob@vllmrt.net> (raw)
In-Reply-To: <20190715111217.34520-1-rob@vllmrt.net>

* gnu/packages/haskell-web.scm (ghc-snap-core): New field.
---

Adds missing import.

 gnu/packages/haskell-web.scm | 60 ++++++++++++++++++++++++++++++++++++
 1 file changed, 60 insertions(+)

diff --git a/gnu/packages/haskell-web.scm b/gnu/packages/haskell-web.scm
index 4bb790d93c..794ebc7774 100644
--- a/gnu/packages/haskell-web.scm
+++ b/gnu/packages/haskell-web.scm
@@ -28,6 +28,7 @@
   #:use-module (gnu packages haskell)
   #:use-module (gnu packages haskell-check)
   #:use-module (gnu packages haskell-crypto)
+  #:use-module (gnu packages haskell-xyz)
   #:use-module (guix build-system haskell)
   #:use-module (guix download)
   #:use-module ((guix licenses) #:prefix license:)
@@ -1294,3 +1295,62 @@ derivations of regular expressions.")
      "The Haskell XML Toolbox bases on the ideas of HaXml and HXML, but
 introduces a more general approach for processing XML with Haskell.")
     (license license:expat)))
+
+(define-public ghc-snap-core
+  (package
+    (name "ghc-snap-core")
+    (version "1.0.3.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "https://hackage.haskell.org/package/snap-core/snap-core-"
+             version
+             ".tar.gz"))
+       (sha256
+        (base32
+         "136q7l4hd5yn5hb507q1ziqx124ma1lkzh5dx0n150p8dx3rhhsc"))))
+    (build-system haskell-build-system)
+    (inputs
+     `(("ghc-old-locale" ,ghc-old-locale)
+       ("ghc-hunit" ,ghc-hunit)
+       ("ghc-attoparsec" ,ghc-attoparsec)
+       ("ghc-bytestring-builder"
+        ,ghc-bytestring-builder)
+       ("ghc-case-insensitive" ,ghc-case-insensitive)
+       ("ghc-lifted-base" ,ghc-lifted-base)
+       ("ghc-io-streams" ,ghc-io-streams)
+       ("ghc-hashable" ,ghc-hashable)
+       ("ghc-monad-control" ,ghc-monad-control)
+       ("ghc-random" ,ghc-random)
+       ("ghc-readable" ,ghc-readable)
+       ("ghc-regex-posix" ,ghc-regex-posix)
+       ("ghc-transformers-base" ,ghc-transformers-base)
+       ("ghc-unix-compat" ,ghc-unix-compat)
+       ("ghc-unordered-containers"
+        ,ghc-unordered-containers)
+       ("ghc-vector" ,ghc-vector)
+       ("ghc-network-uri" ,ghc-network-uri)
+       ("ghc-network" ,ghc-network)))
+    (native-inputs
+     `(("ghc-quickcheck" ,ghc-quickcheck)
+       ("ghc-parallel" ,ghc-parallel)
+       ("ghc-test-framework" ,ghc-test-framework)
+       ("ghc-test-framework-hunit"
+        ,ghc-test-framework-hunit)
+       ("ghc-test-framework-quickcheck2"
+        ,ghc-test-framework-quickcheck2)
+       ("ghc-zlib" ,ghc-zlib)))
+    (arguments
+     `(#:cabal-revision
+       ("3"
+        "0wlhn33r7c9g7j23y006ddq9d87lkmianvvfrbl8jd8mvjvj2gfa")))
+    (home-page "http://snapframework.com/")
+    (synopsis
+     "Snap: A Haskell Web Framework (core interfaces and types)")
+    (description
+     "Snap is a simple and fast web development framework and server written
+in Haskell.  For more information or to download the latest version, you can
+visit the Snap project website at <http://snapframework.com/>.
+This library contains the core definitions and types for the Snap framework.")
+    (license license:bsd-3)))
-- 
2.20.1 (Apple Git-117)

  parent reply	other threads:[~2019-07-15 13:15 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-07-15 11:12 [bug#36663] [PATCH 00/14] Add elm compiler dependencies Robert Vollmert
2019-07-15 11:13 ` [bug#36663] [PATCH 01/14] gnu: Add ghc-snap-core Robert Vollmert
2019-07-15 11:14   ` [bug#36663] [PATCH 02/14] gnu: add ghc-snap-server Robert Vollmert
2019-07-15 11:14   ` [bug#36663] [PATCH 03/14] gnu: Add ghc-http-streams Robert Vollmert
2019-07-15 11:14   ` [bug#36663] [PATCH 04/14] gnu: Add ghc-http-common Robert Vollmert
2019-07-15 11:14   ` [bug#36663] [PATCH 05/14] gnu: Add ghc-hsopenssl Robert Vollmert
2019-07-15 11:14   ` [bug#36663] [PATCH 06/14] gnu: Add ghc-openssl-streams Robert Vollmert
2019-07-15 11:14   ` [bug#36663] [PATCH 07/14] gnu: Add ghc-language-glsl Robert Vollmert
2019-07-15 11:14   ` [bug#36663] [PATCH 08/14] gnu: Add ghc-readable Robert Vollmert
2019-07-15 11:14   ` [bug#36663] [PATCH 09/14] gnu: Add ghc-io-streams-haproxy Robert Vollmert
2019-07-15 11:14   ` [bug#36663] [PATCH 10/14] gnu: Add ghc-zlib-bindings Robert Vollmert
2019-07-15 11:14   ` [bug#36663] [PATCH 11/14] gnu: Add ghc-io-streams Robert Vollmert
2019-07-15 11:14   ` [bug#36663] [PATCH 12/14] gnu: Add ghc-prettyclass Robert Vollmert
2019-07-15 11:14   ` [bug#36663] [PATCH 13/14] gnu: Add ghc-threads Robert Vollmert
2019-07-15 11:14   ` [bug#36663] [PATCH 14/14] gnu: Add ghc-concurrent-extra Robert Vollmert
2019-07-15 13:13 ` Robert Vollmert [this message]
2019-07-15 13:14 ` [bug#36663] [PATCH 05/14 v2] gnu: Add ghc-hsopenssl Robert Vollmert
2019-08-08  4:03 ` bug#36663: [PATCH 00/14] Add elm compiler dependencies Timothy Sample

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

  List information: https://guix.gnu.org/

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

  git send-email \
    --in-reply-to=20190715131323.74692-1-rob@vllmrt.net \
    --to=rob@vllmrt.net \
    --cc=36663@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 public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).