forked from mirrors/nixpkgs
880dcc2c64
By now, it happened twice that a commit broke GHC and thus all Haskell packages we have in Nixpkgs. On such an occasion, I receive well in excess of 3000 notification e-mails from Hydra, and then I receive another 3000 e-mails after the bug has been fixed. Under these circumstances, subscribing to these notifications makes no sense for me. svn path=/nixpkgs/trunk/; revision=33392
21 lines
686 B
Nix
21 lines
686 B
Nix
{ cabal, shakespeareCss, shakespeareJs, text, transformers
|
|
, unorderedContainers, wai, waiExtra, warp, yaml, yesodCore
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "yesod-default";
|
|
version = "0.6.1";
|
|
sha256 = "0am5f8r2w7695zfc6vi0gy8yin9kfgj37qzr14r5v6wzhk1gq5da";
|
|
buildDepends = [
|
|
shakespeareCss shakespeareJs text transformers unorderedContainers
|
|
wai waiExtra warp yaml yesodCore
|
|
];
|
|
meta = {
|
|
homepage = "http://www.yesodweb.com/";
|
|
description = "Default config and main functions for your yesod application";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|