mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 03:17:13 +00:00
28 lines
1 KiB
Nix
28 lines
1 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.1.1";
|
||
|
sha256 = "0mgazf0s9sl53r5smidrfqcx7rq2v4kfm37f4f6mjrl656qxpbwd";
|
||
|
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 ];
|
||
|
};
|
||
|
})
|