[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
10/27: gnu: Add ghc-snap-server
From: |
guix-commits |
Subject: |
10/27: gnu: Add ghc-snap-server |
Date: |
Wed, 31 Jul 2019 12:23:30 -0400 (EDT) |
rob pushed a commit to branch wip-haskell-updates
in repository guix.
commit 73ce66d41467acd10cf7f21d36be116444e1f7a1
Author: Robert Vollmert <address@hidden>
Date: Mon Jul 15 10:25:43 2019 +0200
gnu: Add ghc-snap-server
* gnu/packages/haskell-web.scm (ghc-snap-server): New field.
---
gnu/packages/haskell-web.scm | 62 ++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 62 insertions(+)
diff --git a/gnu/packages/haskell-web.scm b/gnu/packages/haskell-web.scm
index 794ebc7..c093110 100644
--- a/gnu/packages/haskell-web.scm
+++ b/gnu/packages/haskell-web.scm
@@ -1354,3 +1354,65 @@ 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)))
+
+(define-public ghc-snap-server
+ (package
+ (name "ghc-snap-server")
+ (version "1.1.0.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://hackage.haskell.org/package/snap-server/snap-server-"
+ version
+ ".tar.gz"))
+ (sha256
+ (base32
+ "0vvw9n8xs272qdlrf3dxhnva41zh3awi7pf022rrjj75lj8a77i4"))))
+ (build-system haskell-build-system)
+ (inputs
+ `(("ghc-attoparsec" ,ghc-attoparsec)
+ ("ghc-blaze-builder" ,ghc-blaze-builder)
+ ("ghc-bytestring-builder"
+ ,ghc-bytestring-builder)
+ ("ghc-case-insensitive" ,ghc-case-insensitive)
+ ("ghc-clock" ,ghc-clock)
+ ("ghc-io-streams" ,ghc-io-streams)
+ ("ghc-io-streams-haproxy"
+ ,ghc-io-streams-haproxy)
+ ("ghc-lifted-base" ,ghc-lifted-base)
+ ("ghc-network" ,ghc-network)
+ ("ghc-old-locale" ,ghc-old-locale)
+ ("ghc-snap-core" ,ghc-snap-core)
+ ("ghc-unix-compat" ,ghc-unix-compat)
+ ("ghc-vector" ,ghc-vector)))
+ (native-inputs
+ `(("ghc-base16-bytestring" ,ghc-base16-bytestring)
+ ("ghc-monad-control" ,ghc-monad-control)
+ ("ghc-random" ,ghc-random)
+ ("ghc-threads" ,ghc-threads)
+ ("ghc-hunit" ,ghc-hunit)
+ ("ghc-quickcheck" ,ghc-quickcheck)
+ ("ghc-http-streams" ,ghc-http-streams)
+ ("ghc-http-common" ,ghc-http-common)
+ ("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)))
+ (arguments
+ `(#:cabal-revision
+ ("3"
+ "0a9d3nqb5rvgm25nak68lp6yj9m6cwhbgdbg5l7ib5i2czcg7yjh")))
+ (home-page "http://snapframework.com/")
+ (synopsis "Web server for the Snap Framework")
+ (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/>.
+The Snap HTTP server is a high performance web server library written in
+Haskell. Together with the snap-core library upon which it depends,
+it provides a clean and efficient Haskell programming interface to the
+HTTP protocol.")
+ (license license:bsd-3)))
- branch wip-haskell-updates created (now de8334f), guix-commits, 2019/07/31
- 02/27: import: hackage: Update list of ghc-included packages., guix-commits, 2019/07/31
- 01/27: gnu: Add GHC 8.6.5, guix-commits, 2019/07/31
- 04/27: Revert "gnu: ghc-ansi-wl-pprint: Use ghc-ansi-terminal-0.8.", guix-commits, 2019/07/31
- 06/27: Revert "gnu: ghc-ansi-terminal: Update to 0.9.1.", guix-commits, 2019/07/31
- 05/27: gnu: ghc-hedgehog: Use ghc-ansi-terminal., guix-commits, 2019/07/31
- 11/27: gnu: Add ghc-http-streams, guix-commits, 2019/07/31
- 07/27: gnu: ghc-concurrent-output: Downgrade to 1.10.9., guix-commits, 2019/07/31
- 10/27: gnu: Add ghc-snap-server,
guix-commits <=
- 15/27: gnu: Add ghc-language-glsl, guix-commits, 2019/07/31
- 25/27: gnu: ghc-libmpd-haskell: Skip tests., guix-commits, 2019/07/31
- 23/27: gnu: Remove ghc-regex-tdfa-rc (broken and unused), guix-commits, 2019/07/31
- 24/27: gnu: Remove ghc-haddock-test (broken and unused), guix-commits, 2019/07/31
- 14/27: gnu: Add ghc-openssl-streams, guix-commits, 2019/07/31
- 27/27: gnu: ghc-trifecta: Skip tests., guix-commits, 2019/07/31
- 20/27: gnu: Add ghc-prettyclass, guix-commits, 2019/07/31
- 19/27: gnu: Add ghc-io-streams, guix-commits, 2019/07/31
- 22/27: gnu: Add ghc-concurrent-extra, guix-commits, 2019/07/31
- 17/27: gnu: Add ghc-io-streams-haproxy, guix-commits, 2019/07/31