2013-05-30 11:01:50 +02:00
|
|
|
{ cabal, yesodCore }:
|
2011-07-07 23:40:46 +02:00
|
|
|
|
2011-08-09 22:13:22 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2011-07-07 23:40:46 +02:00
|
|
|
pname = "yesod-json";
|
2013-05-30 11:01:50 +02:00
|
|
|
version = "1.2.0";
|
|
|
|
sha256 = "0d035k1ls5iq1c12yxknyc33qd22ayyhl69y62zmcw7arwx35sgw";
|
|
|
|
buildDepends = [ yesodCore ];
|
2011-07-07 23:40:46 +02:00
|
|
|
meta = {
|
2011-08-09 22:13:22 +02:00
|
|
|
homepage = "http://www.yesodweb.com/";
|
2013-05-30 11:01:50 +02:00
|
|
|
description = "Generate content for Yesod using the aeson package. (deprecated)";
|
2012-04-05 18:51:59 +02:00
|
|
|
license = self.stdenv.lib.licenses.mit;
|
2011-08-09 22:13:22 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-11 00:36:36 +02:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-07-07 23:40:46 +02:00
|
|
|
};
|
|
|
|
})
|