5930e47068
- attoparsec-conduit: updated to version 0.4.0.1 - conduit: updated to version 0.4.2 - network-conduit: updated to version 0.4.0.1 - persistent-sqlite: updated to version 0.9.0.2 - persistent: updated to version 0.9.0.4 - semigroups: updated to version 0.8.3.1 - wai-app-static: updated to version 1.2.0.3 - wai-extra: updated to version 1.2.0.4 - wai: updated to version 1.2.0.2 - warp: updated to version 1.2.0.2 - xml-conduit: updated to version 0.7.0.2 svn path=/nixpkgs/trunk/; revision=34027
20 lines
568 B
Nix
20 lines
568 B
Nix
{ cabal, blazeBuilder, conduit, httpTypes, network, text
|
|
, transformers, vault
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "wai";
|
|
version = "1.2.0.2";
|
|
sha256 = "07h0znwlnfpikw9zxk7cxnyvsgqyix7lv8rylxzj259ylwfpk9fp";
|
|
buildDepends = [
|
|
blazeBuilder conduit httpTypes network text transformers vault
|
|
];
|
|
meta = {
|
|
homepage = "https://github.com/yesodweb/wai";
|
|
description = "Web Application Interface";
|
|
license = self.stdenv.lib.licenses.mit;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|