2014-03-27 13:18:00 +01:00
|
|
|
{ cabal, async, base64Bytestring, byteable, conduit, cryptohash
|
2014-03-19 11:45:47 +01:00
|
|
|
, cryptohashConduit, dataDefault, fileEmbed, filepath, hjsmin
|
2013-11-11 12:12:47 +01:00
|
|
|
, hspec, httpTypes, HUnit, mimeTypes, processConduit, 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-27 13:18:00 +01:00
|
|
|
version = "1.2.2.3";
|
|
|
|
sha256 = "1lxnrd2972yj3a56kz9giz15h2g9qh12pgylpsxhpvscf3xajwml";
|
2011-08-10 01:00:20 +02:00
|
|
|
buildDepends = [
|
2014-03-27 13:18:00 +01:00
|
|
|
async base64Bytestring byteable conduit cryptohash
|
|
|
|
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-27 13:18:00 +01:00
|
|
|
async base64Bytestring byteable conduit cryptohash
|
|
|
|
cryptohashConduit dataDefault fileEmbed filepath hjsmin hspec
|
|
|
|
httpTypes HUnit mimeTypes processConduit 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
|
|
|
};
|
|
|
|
})
|