[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
15/28: gnu: Add ghc-snap-core.
From: |
guix-commits |
Subject: |
15/28: gnu: Add ghc-snap-core. |
Date: |
Thu, 1 Aug 2019 12:14:05 -0400 (EDT) |
rob pushed a commit to branch wip-haskell-updates
in repository guix.
commit 4f947d4260eedbdf0a01a186d17296b157248f4d
Author: Robert Vollmert <address@hidden>
Date: Mon Jul 15 10:19:49 2019 +0200
gnu: Add ghc-snap-core.
* gnu/packages/haskell-web.scm (ghc-snap-core): New package.
---
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 4bb790d..794ebc7 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)))
- 11/28: gnu: Remove ghc-packedstring., (continued)
- 11/28: gnu: Remove ghc-packedstring., guix-commits, 2019/08/01
- 13/28: gnu: ghc-yaml: Disable tests., guix-commits, 2019/08/01
- 28/28: gnu: Add ghc-concurrent-extra., guix-commits, 2019/08/01
- 12/28: gnu: ghc-libmpd-haskell: Disable tests., guix-commits, 2019/08/01
- 10/28: gnu: Remove ghc-haddock-test., guix-commits, 2019/08/01
- 17/28: gnu: Add ghc-http-streams., guix-commits, 2019/08/01
- 16/28: gnu: Add ghc-snap-server., guix-commits, 2019/08/01
- 24/28: gnu: Add ghc-zlib-bindings., guix-commits, 2019/08/01
- 20/28: gnu: Add ghc-openssl-streams., guix-commits, 2019/08/01
- 21/28: gnu: Add ghc-language-glsl., guix-commits, 2019/08/01
- 15/28: gnu: Add ghc-snap-core.,
guix-commits <=
- 19/28: gnu: Add ghc-hsopenssl., guix-commits, 2019/08/01
- 27/28: gnu: Add ghc-threads., guix-commits, 2019/08/01
- 18/28: gnu: Add ghc-http-common., guix-commits, 2019/08/01
- 25/28: gnu: Add ghc-io-streams., guix-commits, 2019/08/01
- 23/28: gnu: Add ghc-io-streams-haproxy., guix-commits, 2019/08/01
- 22/28: gnu: Add ghc-readable., guix-commits, 2019/08/01