2014-02-19 16:29:01 +01:00
|
|
|
{ cabal, attoparsec, blazeBuilder, deepseq, dlist, hashable, HUnit
|
|
|
|
, mtl, QuickCheck, scientific, syb, testFramework
|
|
|
|
, testFrameworkHunit, testFrameworkQuickcheck2, text, time
|
|
|
|
, unorderedContainers, vector
|
2014-01-20 12:43:49 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "aeson";
|
2014-04-17 21:12:34 +02:00
|
|
|
version = "0.7.0.3";
|
|
|
|
sha256 = "0d2mgy35q7jkg18wh0ms7i26v74nj5mffa6z80bdblihizif6100";
|
2014-01-20 12:43:49 +01:00
|
|
|
buildDepends = [
|
2014-02-19 16:29:01 +01:00
|
|
|
attoparsec blazeBuilder deepseq dlist hashable mtl scientific syb
|
|
|
|
text time unorderedContainers vector
|
2014-01-20 12:43:49 +01:00
|
|
|
];
|
|
|
|
testDepends = [
|
|
|
|
attoparsec HUnit QuickCheck testFramework testFrameworkHunit
|
|
|
|
testFrameworkQuickcheck2 text time unorderedContainers vector
|
|
|
|
];
|
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/bos/aeson";
|
|
|
|
description = "Fast JSON parsing and encoding";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
|
|
};
|
|
|
|
})
|