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