e6bf916dff
svn path=/nixpkgs/trunk/; revision=30602
31 lines
1.1 KiB
Nix
31 lines
1.1 KiB
Nix
{ cabal, aeson, blazeBuilder, blazeHtml, caseInsensitive, cereal
|
|
, clientsession, cookie, dataObject, dataObjectYaml, enumerator
|
|
, failure, hamlet, httpTypes, monadControl, parsec, pathPieces
|
|
, random, shakespeare, shakespeareCss, shakespeareJs
|
|
, strictConcurrency, text, time, transformers, vector, wai
|
|
, waiExtra
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "yesod-core";
|
|
version = "0.9.3.4";
|
|
sha256 = "1hnzmbspdj15480n0r4r1gayapwwz3d5r3hzj5k4qd9975lyxcw1";
|
|
buildDepends = [
|
|
aeson blazeBuilder blazeHtml caseInsensitive cereal clientsession
|
|
cookie dataObject dataObjectYaml enumerator failure hamlet
|
|
httpTypes monadControl parsec pathPieces random shakespeare
|
|
shakespeareCss shakespeareJs strictConcurrency text time
|
|
transformers vector wai waiExtra
|
|
];
|
|
meta = {
|
|
homepage = "http://www.yesodweb.com/";
|
|
description = "Creation of type-safe, RESTful web applications";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [
|
|
self.stdenv.lib.maintainers.andres
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|