2012-02-16 14:05:41 +00:00
|
|
|
{ cabal, base64Bytestring, cereal, conduit, cryptoConduit
|
2013-09-02 12:20:19 +01:00
|
|
|
, cryptohashCryptoapi, dataDefault, fileEmbed, hspec, httpTypes
|
2013-05-30 10:01:50 +01:00
|
|
|
, shakespeareCss, systemFileio, systemFilepath, text, transformers
|
|
|
|
, unixCompat, wai, waiAppStatic, yesodCore
|
2011-08-10 00:00:20 +01:00
|
|
|
}:
|
2011-08-07 23:51:22 +01:00
|
|
|
|
2011-08-10 00:00:20 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-07 23:51:22 +01:00
|
|
|
pname = "yesod-static";
|
2013-09-02 12:20:19 +01:00
|
|
|
version = "1.2.0.1";
|
|
|
|
sha256 = "1ij0j1m9j6l63rl4zdfik36a3sb3k0zpqjg85sgis6wdqr18gsi5";
|
2011-08-10 00:00:20 +01:00
|
|
|
buildDepends = [
|
2013-09-02 12:20:19 +01:00
|
|
|
base64Bytestring cereal conduit cryptoConduit cryptohashCryptoapi
|
2013-05-30 10:01:50 +01:00
|
|
|
dataDefault fileEmbed httpTypes shakespeareCss systemFileio
|
|
|
|
systemFilepath text transformers unixCompat wai waiAppStatic
|
|
|
|
yesodCore
|
2011-08-07 23:51:22 +01:00
|
|
|
];
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [
|
2013-09-02 12:20:19 +01:00
|
|
|
base64Bytestring cereal conduit cryptoConduit cryptohashCryptoapi
|
2013-05-30 10:01:50 +01:00
|
|
|
dataDefault fileEmbed hspec httpTypes shakespeareCss systemFileio
|
|
|
|
systemFilepath text transformers unixCompat wai waiAppStatic
|
|
|
|
yesodCore
|
2013-02-24 21:09:07 +00:00
|
|
|
];
|
2011-08-07 23:51:22 +01:00
|
|
|
meta = {
|
|
|
|
homepage = "http://www.yesodweb.com/";
|
2011-08-11 14:03:51 +01:00
|
|
|
description = "Static file serving subsite for Yesod Web Framework";
|
2012-04-05 17:51:59 +01:00
|
|
|
license = self.stdenv.lib.licenses.mit;
|
2011-08-09 10:54:50 +01:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-07 23:51:22 +01:00
|
|
|
};
|
|
|
|
})
|