2012-02-16 06:05:41 -08:00
|
|
|
{ cabal, base64Bytestring, cereal, conduit, cryptoConduit
|
2013-02-24 13:09:07 -08:00
|
|
|
, cryptohash, fileEmbed, hspec, httpTypes, systemFilepath, text
|
2012-08-09 03:10:54 -07:00
|
|
|
, transformers, unixCompat, wai, waiAppStatic, yesodCore
|
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";
|
2013-02-20 02:58:08 -08:00
|
|
|
version = "1.1.2.2";
|
|
|
|
sha256 = "1z1afpr9xbclpwswlbys7f7w8761vvr06hxhqhnqfzf4ky8g3671";
|
2011-08-09 16:00:20 -07:00
|
|
|
buildDepends = [
|
2012-02-16 06:05:41 -08:00
|
|
|
base64Bytestring cereal conduit cryptoConduit cryptohash fileEmbed
|
2012-08-09 03:10:54 -07:00
|
|
|
httpTypes systemFilepath text transformers unixCompat wai
|
|
|
|
waiAppStatic yesodCore
|
2011-08-07 15:51:22 -07:00
|
|
|
];
|
2013-02-24 13:09:07 -08:00
|
|
|
testDepends = [
|
|
|
|
base64Bytestring cereal conduit cryptoConduit cryptohash fileEmbed
|
|
|
|
hspec httpTypes systemFilepath text transformers unixCompat wai
|
|
|
|
waiAppStatic yesodCore
|
|
|
|
];
|
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;
|
2012-03-24 03:21:28 -07:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-07 15:51:22 -07:00
|
|
|
};
|
|
|
|
})
|