summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/yesod-json/default.nix
blob: 780444bd86169cbb7859858d6843d52db11f8be3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ cabal, yesodCore }:

cabal.mkDerivation (self: {
  pname = "yesod-json";
  version = "1.2.0";
  sha256 = "0d035k1ls5iq1c12yxknyc33qd22ayyhl69y62zmcw7arwx35sgw";
  buildDepends = [ yesodCore ];
  meta = {
    homepage = "http://www.yesodweb.com/";
    description = "Generate content for Yesod using the aeson package. (deprecated)";
    license = self.stdenv.lib.licenses.mit;
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.andres ];
  };
})