25 lines
919 B
Nix
25 lines
919 B
Nix
{ cabal, aeson, blazeHtml, blazeMarkup, dataDefault, hamlet
|
|
, monadControl, networkConduit, safe, shakespeareCss, shakespeareJs
|
|
, text, transformers, unorderedContainers, wai, waiExtra, warp
|
|
, yaml, yesodAuth, yesodCore, yesodForm, yesodPersistent
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "yesod";
|
|
version = "1.2.0.1";
|
|
sha256 = "1whkw0lmkyja2j6vbfcf5rjmmhmc85r4arjwjrvdmz6jkjyqham3";
|
|
buildDepends = [
|
|
aeson blazeHtml blazeMarkup dataDefault hamlet monadControl
|
|
networkConduit safe shakespeareCss shakespeareJs text transformers
|
|
unorderedContainers wai waiExtra warp yaml yesodAuth yesodCore
|
|
yesodForm 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 ];
|
|
};
|
|
})
|