haskell-wai-websockets: add version 2.1.0

This commit is contained in:
Christoph Hrdinka 2014-03-14 23:43:41 +01:00
parent 4d5d6aed29
commit 65bb4ce47b
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{ cabal, blazeBuilder, caseInsensitive, conduit, fileEmbed
, httpTypes, ioStreams, network, text, transformers, wai
, waiAppStatic, warp, websockets
}:
cabal.mkDerivation (self: {
pname = "wai-websockets";
version = "2.1.0";
sha256 = "094imqhkn4ghifgp2qhs4hnby3zzdd84fhmyvvy7igcpz1rmll7a";
isLibrary = true;
isExecutable = true;
buildDepends = [
blazeBuilder caseInsensitive conduit fileEmbed httpTypes ioStreams
network text transformers wai waiAppStatic warp websockets
];
meta = {
homepage = "http://github.com/yesodweb/wai";
description = "Provide a bridge betweeen WAI and the websockets package";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
};
})

View File

@ -2570,6 +2570,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
waiTest = callPackage ../development/libraries/haskell/wai-test {};
waiWebsockets = callPackage ../development/libraries/haskell/wai-websockets {};
warp = callPackage ../development/libraries/haskell/warp {};
warpTls = callPackage ../development/libraries/haskell/warp-tls {};