-
Notifications
You must be signed in to change notification settings - Fork 200
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use built-in ping pong mechanism of the latest version of websockets
- Loading branch information
1 parent
c4ef680
commit 2a85c32
Showing
2 changed files
with
36 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ mkDerivation, async, attoparsec, base, base64-bytestring, binary | ||
, bytestring, case-insensitive, containers, criterion, entropy | ||
, HUnit, lib, network, QuickCheck, random, SHA, streaming-commons | ||
, test-framework, test-framework-hunit, test-framework-quickcheck2 | ||
, text | ||
}: | ||
mkDerivation { | ||
pname = "websockets"; | ||
version = "0.13.0.0"; | ||
sha256 = "1da95b71akggyikbxdmja3gcaqrz8sp6ri5jrsyavc2ickvi9y4s"; | ||
isLibrary = true; | ||
isExecutable = true; | ||
libraryHaskellDepends = [ | ||
async attoparsec base base64-bytestring binary bytestring | ||
case-insensitive containers entropy network random SHA | ||
streaming-commons text | ||
]; | ||
testHaskellDepends = [ | ||
async attoparsec base base64-bytestring binary bytestring | ||
case-insensitive containers entropy HUnit network QuickCheck random | ||
SHA streaming-commons test-framework test-framework-hunit | ||
test-framework-quickcheck2 text | ||
]; | ||
benchmarkHaskellDepends = [ | ||
async attoparsec base base64-bytestring binary bytestring | ||
case-insensitive containers criterion entropy network random SHA | ||
text | ||
]; | ||
doCheck = false; | ||
homepage = "http://jaspervdj.be/websockets"; | ||
description = "A sensible and clean way to write WebSocket-capable servers in Haskell"; | ||
license = lib.licenses.bsd3; | ||
} |