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