2011-03-12 09:28:15 -08:00
|
|
|
# syb isn't listed by the HackageDB web interface, but is
|
|
|
|
# a dependency for Text.JSON.Generic which is only exposed
|
|
|
|
# if syb is available.
|
|
|
|
{cabal, mtl, syb}:
|
2009-05-05 16:06:01 -07:00
|
|
|
|
|
|
|
cabal.mkDerivation (self : {
|
|
|
|
pname = "json";
|
2011-02-15 01:47:36 -08:00
|
|
|
version = "0.4.4";
|
|
|
|
sha256 = "102qmz55b2mgcca3q1c2pkcr6hz7kmpldad3f6blhmp1cz15f081";
|
2011-03-12 09:28:15 -08:00
|
|
|
propagatedBuildInputs = [mtl syb];
|
2009-05-05 16:06:01 -07:00
|
|
|
meta = {
|
|
|
|
description = "Support for serialising Haskell to and from JSON";
|
|
|
|
};
|
2011-03-28 08:04:00 -07:00
|
|
|
})
|
2009-05-05 16:06:01 -07:00
|
|
|
|