7762bb93ee
- cabal-install: added support for version 0.14.0 to GHC 7.0.4, 6.12.3, and 6.10.4 - crypto-conduit: updated to version 0.3.1 - haskell-src-exts: updated to version 1.13.2 - hjsmin: updated to version 0.1.0 - persistent: updated to version 0.9.0.2 - wai-extra: updated to version 1.2.0.3 - wxdirect: updated to version 0.90.0.1 - yesod-core: updated to version 1.0.1 - yesod-default: updated to version 1.0.1 - yesod-form: updated to version 1.0.0.2 - yesod-routes: updated to version 1.0.1 - yesod: updated to version 1.0.1 svn path=/nixpkgs/trunk/; revision=33838
28 lines
1 KiB
Nix
28 lines
1 KiB
Nix
{ cabal, attoparsec, blazeBuilder, blazeHtml, Cabal, fastLogger
|
|
, filepath, hamlet, httpTypes, monadControl, parsec, shakespeareCss
|
|
, shakespeareJs, shakespeareText, text, time, transformers
|
|
, unixCompat, wai, waiExtra, waiLogger, warp, yesodAuth, yesodCore
|
|
, yesodForm, yesodJson, yesodPersistent
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "yesod";
|
|
version = "1.0.1";
|
|
sha256 = "0ff72z0ixx5xdd2n6vrn474ga4n5zzr1z566s9wb54lqxd8vrdn0";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [
|
|
attoparsec blazeBuilder blazeHtml Cabal fastLogger filepath hamlet
|
|
httpTypes monadControl parsec shakespeareCss shakespeareJs
|
|
shakespeareText text time transformers unixCompat wai waiExtra
|
|
waiLogger warp yesodAuth yesodCore yesodForm yesodJson
|
|
yesodPersistent
|
|
];
|
|
meta = {
|
|
homepage = "http://www.yesodweb.com/";
|
|
description = "Creation of type-safe, RESTful web applications";
|
|
license = self.stdenv.lib.licenses.mit;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|