summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/yesod-json/default.nix
blob: 167ead39dd5ef4d581824c37f36034a6a1b86186 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ cabal, aeson, shakespeareJs, text, unorderedContainers, vector
, yesodCore
}:

cabal.mkDerivation (self: {
  pname = "yesod-json";
  version = "0.2.2.1";
  sha256 = "16l5ygj9xsg2lzw3mkn1kmq543n9w5z1g6lyl8nw5bblp66lfxq3";
  buildDepends = [
    aeson shakespeareJs text unorderedContainers vector yesodCore
  ];
  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
    ];
  };
})