2012-02-16 14:05:41 +00:00
|
|
|
{ cabal, base64Bytestring, cereal, conduit, cryptoConduit
|
2013-02-24 21:09:07 +00:00
|
|
|
, cryptohash, fileEmbed, hspec, httpTypes, systemFilepath, text
|
2012-08-09 11:10:54 +01:00
|
|
|
, 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-04-25 08:05:38 +01:00
|
|
|
version = "1.1.2.3";
|
|
|
|
sha256 = "15wk7kpr5xdxia07wyx7msfdlyafqn2pkkrzzdfqvij972n17xmh";
|
2011-08-10 00:00:20 +01:00
|
|
|
buildDepends = [
|
2012-02-16 14:05:41 +00:00
|
|
|
base64Bytestring cereal conduit cryptoConduit cryptohash fileEmbed
|
2012-08-09 11:10:54 +01:00
|
|
|
httpTypes systemFilepath text transformers unixCompat wai
|
|
|
|
waiAppStatic yesodCore
|
2011-08-07 23:51:22 +01:00
|
|
|
];
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [
|
|
|
|
base64Bytestring cereal conduit cryptoConduit cryptohash fileEmbed
|
|
|
|
hspec httpTypes systemFilepath text transformers unixCompat wai
|
|
|
|
waiAppStatic yesodCore
|
|
|
|
];
|
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
|
|
|
};
|
|
|
|
})
|