summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/yesod/default.nix
blob: 256c398cfe4cba464d04866f46db5fd4b4ccf3b6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ cabal, attoparsec, blazeBuilder, blazeHtml, blazeMarkup, 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.6";
  sha256 = "0w5k5bcv50fjpyja6ydknk78dk50swx6b0myhizj8rcf851xga43";
  isLibrary = true;
  isExecutable = true;
  buildDepends = [
    attoparsec blazeBuilder blazeHtml blazeMarkup 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 ];
  };
})