24 lines
917 B
Nix
24 lines
917 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.3";
|
|
sha256 = "0y1jwz7azk078kf14hsylgpwljdmrainhwflgxwyf0gcc5l7jhz3";
|
|
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 ];
|
|
};
|
|
})
|