28 lines
1.0 KiB
Nix
28 lines
1.0 KiB
Nix
{ cabal, attoparsec, base64Bytestring, binary, blazeBuilder
|
|
, caseInsensitive, entropy, HUnit, ioStreams, mtl, network
|
|
, QuickCheck, random, SHA, testFramework, testFrameworkHunit
|
|
, testFrameworkQuickcheck2, text
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "websockets";
|
|
version = "0.8.2.1";
|
|
sha256 = "0ayh20a6xj3ab9ld3lmrazx94vbbf1xn65nxcpkq7cvm8ggim7a6";
|
|
buildDepends = [
|
|
attoparsec base64Bytestring binary blazeBuilder caseInsensitive
|
|
entropy ioStreams mtl network random SHA text
|
|
];
|
|
testDepends = [
|
|
attoparsec base64Bytestring binary blazeBuilder caseInsensitive
|
|
entropy HUnit ioStreams mtl network QuickCheck random SHA
|
|
testFramework testFrameworkHunit testFrameworkQuickcheck2 text
|
|
];
|
|
meta = {
|
|
homepage = "http://jaspervdj.be/websockets";
|
|
description = "A sensible and clean way to write WebSocket-capable servers in Haskell";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.ocharles ];
|
|
};
|
|
})
|