gnu: Add ghc-happstack-server.
* gnu/packages/haskell-web.scm (ghc-happstack-server): New variable. Signed-off-by: Brett Gilio <brettg@posteo.net>master
parent
0ef07d79b9
commit
0eb8f530d1
|
@ -1527,6 +1527,53 @@ The first three components of the version number match the upstream flot
|
||||||
version. The package is designed to meet the redistribution
|
version. The package is designed to meet the redistribution
|
||||||
requirements of downstream users (e.g. Debian).")
|
requirements of downstream users (e.g. Debian).")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public ghc-happstack-server
|
||||||
|
(package
|
||||||
|
(name "ghc-happstack-server")
|
||||||
|
(version "7.5.4")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append
|
||||||
|
"https://hackage.haskell.org/package/happstack-server/happstack-server-"
|
||||||
|
version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0i7csvmwv7n68gkwqzi985p2mjdgzipjnlj873sdiknhx9pfmq70"))))
|
||||||
|
(build-system haskell-build-system)
|
||||||
|
(inputs
|
||||||
|
`(("ghc-network" ,ghc-network)
|
||||||
|
("ghc-network-bsd" ,ghc-network-bsd)
|
||||||
|
("ghc-network-uri" ,ghc-network-uri)
|
||||||
|
("ghc-base64-bytestring" ,ghc-base64-bytestring)
|
||||||
|
("ghc-blaze-html" ,ghc-blaze-html)
|
||||||
|
("ghc-exceptions" ,ghc-exceptions)
|
||||||
|
("ghc-extensible-exceptions"
|
||||||
|
,ghc-extensible-exceptions)
|
||||||
|
("ghc-hslogger" ,ghc-hslogger)
|
||||||
|
("ghc-html" ,ghc-html)
|
||||||
|
("ghc-monad-control" ,ghc-monad-control)
|
||||||
|
("ghc-old-locale" ,ghc-old-locale)
|
||||||
|
("ghc-semigroups" ,ghc-semigroups)
|
||||||
|
("ghc-sendfile" ,ghc-sendfile)
|
||||||
|
("ghc-system-filepath" ,ghc-system-filepath)
|
||||||
|
("ghc-syb" ,ghc-syb)
|
||||||
|
("ghc-threads" ,ghc-threads)
|
||||||
|
("ghc-transformers-base" ,ghc-transformers-base)
|
||||||
|
("ghc-transformers-compat"
|
||||||
|
,ghc-transformers-compat)
|
||||||
|
("ghc-utf8-string" ,ghc-utf8-string)
|
||||||
|
("ghc-zlib" ,ghc-zlib)))
|
||||||
|
(native-inputs `(("ghc-hunit" ,ghc-hunit)))
|
||||||
|
(home-page "http://happstack.com")
|
||||||
|
(synopsis "Web related tools and services for Haskell")
|
||||||
|
(description
|
||||||
|
"Happstack Server provides an HTTP server and a rich set of functions for
|
||||||
|
routing requests, handling query parameters, generating responses, working with
|
||||||
|
cookies, serving files, and more.")
|
||||||
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public ghc-sendfile
|
(define-public ghc-sendfile
|
||||||
(package
|
(package
|
||||||
(name "ghc-sendfile")
|
(name "ghc-sendfile")
|
||||||
|
|
Reference in New Issue