2011-08-10 01:00:20 +02:00
|
|
|
{ cabal, base64Bytestring, cereal, pureMD5, text, transformers
|
|
|
|
, waiAppStatic, yesodCore
|
|
|
|
}:
|
2011-08-08 00:51:22 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-08 00:51:22 +02:00
|
|
|
pname = "yesod-static";
|
|
|
|
version = "0.1.0.1";
|
|
|
|
sha256 = "0icb1wp0ndvl54shjyv0apmias60j2gjbcv7i92dxnl3fzx74d3p";
|
2011-08-10 01:00:20 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2011-08-08 00:51:22 +02:00
|
|
|
base64Bytestring cereal pureMD5 text transformers waiAppStatic
|
|
|
|
yesodCore
|
|
|
|
];
|
|
|
|
meta = {
|
|
|
|
homepage = "http://www.yesodweb.com/";
|
|
|
|
description = "Static file serving subsite for Yesod Web Framework.";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 11:54:50 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2011-08-10 01:00:20 +02:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2011-08-08 00:51:22 +02:00
|
|
|
};
|
|
|
|
})
|