2012-11-08 14:57:37 +01:00
|
|
|
{ cabal, dataDefault, hamlet, networkConduit, safe, shakespeareCss
|
2012-08-09 12:10:54 +02:00
|
|
|
, shakespeareJs, text, transformers, unorderedContainers, wai
|
|
|
|
, waiExtra, warp, yaml, yesodCore
|
2012-02-02 15:54:53 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "yesod-default";
|
2013-02-20 11:58:07 +01:00
|
|
|
version = "1.1.3.2";
|
|
|
|
sha256 = "07gm9sj4c231wdmfmb7df1s8wvqa6fw7nhcq554h16h2ibv5pcqg";
|
2012-02-02 15:54:53 +01:00
|
|
|
buildDepends = [
|
2012-11-08 14:57:37 +01:00
|
|
|
dataDefault hamlet networkConduit safe shakespeareCss shakespeareJs
|
|
|
|
text transformers unorderedContainers wai waiExtra warp yaml
|
|
|
|
yesodCore
|
2012-02-02 15:54:53 +01:00
|
|
|
];
|
|
|
|
meta = {
|
|
|
|
homepage = "http://www.yesodweb.com/";
|
|
|
|
description = "Default config and main functions for your yesod application";
|
2012-04-05 18:51:59 +02:00
|
|
|
license = self.stdenv.lib.licenses.mit;
|
2012-02-02 15:54:53 +01:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2012-02-02 15:54:53 +01:00
|
|
|
};
|
|
|
|
})
|