24 lines
884 B
Nix
24 lines
884 B
Nix
{ cabal, base64Bytestring, blazeBuilder, blazeHtml, blazeMarkup
|
|
, cereal, cryptoConduit, cryptohash, fileEmbed, httpDate, httpTypes
|
|
, mimeTypes, systemFileio, systemFilepath, text, time, transformers
|
|
, unixCompat, wai
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "wai-app-static";
|
|
version = "1.3.1.2";
|
|
sha256 = "1i0j3n0cp1zq43g06nb3cxajd4k9isg4chdwzzlyimm078a9w54x";
|
|
buildDepends = [
|
|
base64Bytestring blazeBuilder blazeHtml blazeMarkup cereal
|
|
cryptoConduit cryptohash fileEmbed httpDate httpTypes mimeTypes
|
|
systemFileio systemFilepath text time transformers unixCompat wai
|
|
];
|
|
meta = {
|
|
homepage = "http://www.yesodweb.com/book/web-application-interface";
|
|
description = "WAI application for static serving";
|
|
license = self.stdenv.lib.licenses.mit;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|