b041d3e49b
- blaze-builder-conduit: updated to version 0.4.0.1 - enumerator: updated to version 0.4.19 - persistent-sqlite: updated to version 0.9.0.1 - persistent-template: updated to version 0.9.0.1 - persistent: updated to version 0.9.0.1 - pool-conduit: updated to version 0.1.0.1 - semigroups: updated to version 0.8.2 - shakespeare-css: updated to version 1.0.1.1 - shakespeare-i18n: updated to version 1.0.0.1 - shakespeare-js: updated to version 1.0.0.1 - shakespeare-text: updated to version 1.0.0.1 - shakespeare: updated to version 1.0.0.1 - void: updated to version 0.5.5.1 - wai-app-static: updated to version 1.2.0.1 - wai: updated to version 1.2.0.1 - warp: updated to version 1.2.0.1 - yesod-core: updated to version 1.0.0.2 - yesod: updated to version 1.0.0.2 - zlib-conduit: updated to version 0.4.0.1 svn path=/nixpkgs/trunk/; revision=33683
23 lines
771 B
Nix
23 lines
771 B
Nix
{ cabal, blazeBuilder, blazeBuilderConduit, caseInsensitive
|
|
, conduit, httpTypes, liftedBase, network, networkConduit
|
|
, simpleSendfile, transformers, unixCompat, wai
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "warp";
|
|
version = "1.2.0.1";
|
|
sha256 = "0lbyi6xchjkf6fx3d7dh5hg8gfq041hb0yls6vq8svd75dr0x5nv";
|
|
buildDepends = [
|
|
blazeBuilder blazeBuilderConduit caseInsensitive conduit httpTypes
|
|
liftedBase network networkConduit simpleSendfile transformers
|
|
unixCompat wai
|
|
];
|
|
meta = {
|
|
homepage = "http://github.com/yesodweb/wai";
|
|
description = "A fast, light-weight web server for WAI applications";
|
|
license = self.stdenv.lib.licenses.mit;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|