summary refs log blame commit diff
path: root/pkgs/development/libraries/haskell/wai-app-static/default.nix
blob: fafd91e8aacd7e40d42995b018b447094c1435f0 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15














                                                                  
                                        


                                                         
{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.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.andres ];
  };
})