f7200279f4
svn path=/nixpkgs/trunk/; revision=32200
25 lines
759 B
Nix
25 lines
759 B
Nix
{ cabal, base64Bytestring, blazeBuilder, blazeHtml, cryptohash
|
|
, fileEmbed, httpDate, httpTypes, text, time, transformers
|
|
, unixCompat, wai
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "wai-app-static";
|
|
version = "1.1.1";
|
|
sha256 = "0i73rxgmng7grs8cgxw8769jg0cvpsb5gi4s0iwrdyh3xd1vj7iy";
|
|
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.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [
|
|
self.stdenv.lib.maintainers.andres
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|