summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/yesod-json/default.nix
blob: a092a4e8f283ea0d4e62056db0f9cb238c6151df (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
{ cabal, aeson, attoparsecConduit, blazeBuilder, Cabal, conduit
, safe, shakespeareJs, text, transformers, vector, wai, waiExtra
, yesodCore, yesodRoutes
}:

cabal.mkDerivation (self: {
  pname = "yesod-json";
  version = "0.3.1";
  sha256 = "17w82mfl364dc0k1zk1gqas3fyskz2jc50diq71fiw87apslva4v";
  buildDepends = [
    aeson attoparsecConduit blazeBuilder Cabal conduit safe
    shakespeareJs text transformers vector wai waiExtra yesodCore
    yesodRoutes
  ];
  meta = {
    homepage = "http://www.yesodweb.com/";
    description = "Generate content for Yesod using the aeson package";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [
      self.stdenv.lib.maintainers.andres
      self.stdenv.lib.maintainers.simons
    ];
  };
})