2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, base64Bytestring, cereal, conduit, cryptoConduit
|
2012-02-10 12:34:18 +01:00
|
|
|
, cryptohash, fileEmbed, httpTypes, text, transformers, unixCompat
|
|
|
|
, wai, waiAppStatic, yesodCore
|
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";
|
2012-05-28 12:23:20 +02:00
|
|
|
version = "1.0.0.3";
|
|
|
|
sha256 = "1nl7cf8yw5akldlrkamnkbypwnj7g1pjkx7nkmlc38jbx58izf5d";
|
2011-08-10 01:00:20 +02:00
|
|
|
buildDepends = [
|
2012-02-16 15:05:41 +01:00
|
|
|
base64Bytestring cereal conduit cryptoConduit cryptohash fileEmbed
|
|
|
|
httpTypes text transformers unixCompat wai waiAppStatic yesodCore
|
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;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-08 00:51:22 +02:00
|
|
|
};
|
|
|
|
})
|