nixpkgs/pkgs/development/libraries/haskell/wai-app-static/default.nix
Andres Löh fd258d6fe1 Added complete yesod.
Some downgrades were necessary.

svn path=/nixpkgs/trunk/; revision=28364
2011-08-07 22:51:22 +00:00

20 lines
639 B
Nix

{cabal, blazeBuilder, blazeHtml, fileEmbed, httpTypes, text,
transformers, unixCompat, wai} :
cabal.mkDerivation (self : {
pname = "wai-app-static";
version = "0.1.0";
sha256 = "0k9pl1kanrb2pqp1bs5s1lxb7ayq2ddf2cxi5q2v9yq22s229xln";
propagatedBuildInputs = [
blazeBuilder blazeHtml fileEmbed httpTypes text transformers
unixCompat wai
];
meta = {
homepage = "http://www.yesodweb.com/";
description = "WAI application for static serving";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.stdenv.lib.platforms.haskellPlatforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})