nixpkgs/pkgs/development/libraries/haskell/wai-app-static/default.nix

20 lines
639 B
Nix
Raw Normal View History

{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 ];
};
})