mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add ghc-wai-websockets.
* gnu/packages/haskell-web.scm (ghc-wai-websockets): New variable. Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
parent
c9fc2d2964
commit
b62f4ec4ca
1 changed files with 30 additions and 0 deletions
|
@ -706,6 +706,36 @@ See also:
|
||||||
@end itemize")
|
@end itemize")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public ghc-wai-websockets
|
||||||
|
(package
|
||||||
|
(name "ghc-wai-websockets")
|
||||||
|
(version "3.0.1.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append
|
||||||
|
"mirror://hackage/package/wai-websockets/wai-websockets-"
|
||||||
|
version
|
||||||
|
".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0b2xmdsrsqpssyib53wbr6r8hf75789ndyyanv37sv99iyqcwz4i"))))
|
||||||
|
(build-system haskell-build-system)
|
||||||
|
(inputs
|
||||||
|
`(("ghc-wai" ,ghc-wai)
|
||||||
|
("ghc-case-insensitive" ,ghc-case-insensitive)
|
||||||
|
("ghc-network" ,ghc-network)
|
||||||
|
("ghc-websockets" ,ghc-websockets)
|
||||||
|
("ghc-http-types" ,ghc-http-types)))
|
||||||
|
(arguments
|
||||||
|
`(#:configure-flags '("--flags=-example")))
|
||||||
|
(home-page "https://github.com/yesodweb/wai")
|
||||||
|
(synopsis
|
||||||
|
"Provide a bridge between WAI and the websockets package")
|
||||||
|
(description
|
||||||
|
"Use websockets with WAI applications, primarily those hosted via Warp.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public ghc-xss-sanitize
|
(define-public ghc-xss-sanitize
|
||||||
(package
|
(package
|
||||||
(name "ghc-xss-sanitize")
|
(name "ghc-xss-sanitize")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue