summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/wai-app-static/default.nix
blob: d4ce90ccba62dd3c2b08cf17d0bed5580c2cda83 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{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 ];
  };
})