2012-02-16 14:05:41 +00:00
|
|
|
{ cabal, attoparsec, blazeBuilder, deepseq, dlist, hashable, mtl
|
2013-02-24 21:09:07 +00:00
|
|
|
, QuickCheck, syb, testFramework, testFrameworkQuickcheck2, text
|
|
|
|
, time, unorderedContainers, vector
|
2011-08-10 00:00:20 +01:00
|
|
|
}:
|
2011-07-07 22:40:43 +01:00
|
|
|
|
2011-08-10 00:00:20 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2011-07-07 22:40:43 +01:00
|
|
|
pname = "aeson";
|
2012-12-15 10:32:47 +00:00
|
|
|
version = "0.6.1.0";
|
|
|
|
sha256 = "16hjwcybmgmk1sg8x02r9bxisx4gl61rlq8w2zsxfgkxwjpfhkbx";
|
2011-08-10 00:00:20 +01:00
|
|
|
buildDepends = [
|
2012-02-16 14:05:41 +00:00
|
|
|
attoparsec blazeBuilder deepseq dlist hashable mtl syb text time
|
|
|
|
unorderedContainers vector
|
2011-07-07 22:40:43 +01:00
|
|
|
];
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [
|
|
|
|
attoparsec QuickCheck testFramework testFrameworkQuickcheck2 text
|
|
|
|
time
|
|
|
|
];
|
2011-07-07 22:40:43 +01:00
|
|
|
meta = {
|
2011-12-02 11:46:44 +00:00
|
|
|
homepage = "https://github.com/bos/aeson";
|
2011-07-07 22:40:43 +01:00
|
|
|
description = "Fast JSON parsing and encoding";
|
2011-08-07 21:24:50 +01:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 10:54:50 +01:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 10:21:28 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-07-07 22:40:43 +01:00
|
|
|
};
|
|
|
|
})
|