2014-03-30 13:07:26 -07:00
|
|
|
{ cabal, async, base64Bytestring, byteable, conduit, conduitExtra
|
|
|
|
, cryptohash, cryptohashConduit, dataDefault, fileEmbed, filepath
|
|
|
|
, hjsmin, hspec, httpTypes, HUnit, mimeTypes, resourcet
|
2013-05-30 02:01:50 -07:00
|
|
|
, shakespeareCss, systemFileio, systemFilepath, text, transformers
|
2013-11-11 03:12:47 -08:00
|
|
|
, unixCompat, unorderedContainers, wai, waiAppStatic, waiTest
|
|
|
|
, yesodCore, yesodTest
|
2011-08-09 16:00:20 -07:00
|
|
|
}:
|
2011-08-07 15:51:22 -07:00
|
|
|
|
2011-08-09 16:00:20 -07:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-07 15:51:22 -07:00
|
|
|
pname = "yesod-static";
|
2014-03-30 13:07:26 -07:00
|
|
|
version = "1.2.2.4";
|
|
|
|
sha256 = "1dpd175kd1yda2fs8zzs00j8nhdvzsgqywkkh934qz7zr7p1rawl";
|
2011-08-09 16:00:20 -07:00
|
|
|
buildDepends = [
|
2014-03-30 13:07:26 -07:00
|
|
|
async base64Bytestring byteable conduit conduitExtra cryptohash
|
2014-03-27 05:18:00 -07:00
|
|
|
cryptohashConduit dataDefault fileEmbed filepath hjsmin httpTypes
|
|
|
|
mimeTypes resourcet shakespeareCss systemFileio systemFilepath text
|
|
|
|
transformers unixCompat unorderedContainers wai waiAppStatic
|
2013-05-30 02:01:50 -07:00
|
|
|
yesodCore
|
2011-08-07 15:51:22 -07:00
|
|
|
];
|
2013-02-24 13:09:07 -08:00
|
|
|
testDepends = [
|
2014-03-30 13:07:26 -07:00
|
|
|
async base64Bytestring byteable conduit conduitExtra cryptohash
|
2014-03-27 05:18:00 -07:00
|
|
|
cryptohashConduit dataDefault fileEmbed filepath hjsmin hspec
|
2014-03-30 13:07:26 -07:00
|
|
|
httpTypes HUnit mimeTypes resourcet shakespeareCss systemFileio
|
|
|
|
systemFilepath text transformers unixCompat unorderedContainers wai
|
|
|
|
waiAppStatic waiTest yesodCore yesodTest
|
2013-02-24 13:09:07 -08:00
|
|
|
];
|
2013-11-11 04:53:55 -08:00
|
|
|
doCheck = false;
|
2011-08-07 15:51:22 -07:00
|
|
|
meta = {
|
|
|
|
homepage = "http://www.yesodweb.com/";
|
2011-08-11 06:03:51 -07:00
|
|
|
description = "Static file serving subsite for Yesod Web Framework";
|
2012-04-05 09:51:59 -07:00
|
|
|
license = self.stdenv.lib.licenses.mit;
|
2011-08-09 02:54:50 -07:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 15:36:36 -07:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-07 15:51:22 -07:00
|
|
|
};
|
|
|
|
})
|