nixpkgs/pkgs/development/libraries/haskell/wai-app-static/default.nix
Peter Simons b041d3e49b Updated Haskell packages.
- 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
2012-04-09 12:37:39 +00:00

22 lines
709 B
Nix

{ cabal, base64Bytestring, blazeBuilder, blazeHtml, cryptohash
, fileEmbed, httpDate, httpTypes, text, time, transformers
, unixCompat, wai
}:
cabal.mkDerivation (self: {
pname = "wai-app-static";
version = "1.2.0.1";
sha256 = "0z3bx6sx3f5k00x0i9lk81a3gh9blnsqw55w89l0pl946fv002pc";
buildDepends = [
base64Bytestring blazeBuilder blazeHtml cryptohash fileEmbed
httpDate httpTypes text time transformers unixCompat wai
];
meta = {
homepage = "http://www.yesodweb.com/book/wai";
description = "WAI application for static serving";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})