22 lines
709 B
Nix
22 lines
709 B
Nix
{ cabal, base64Bytestring, blazeBuilder, blazeHtml, cryptohash
|
|
, fileEmbed, httpDate, httpTypes, text, time, transformers
|
|
, unixCompat, wai
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "wai-app-static";
|
|
version = "1.2.0.3";
|
|
sha256 = "1hn4k28aa15vwvvay62rvi796fma7p3j31z6bfa9im0dxdy7sf9l";
|
|
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.mit;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|