2011-12-25 17:06:20 +01:00
|
|
|
{ cabal, attoparsec, blazeBuilder, deepseq, dlist, hashable, mtl
|
|
|
|
, syb, text, time, unorderedContainers, vector
|
2011-08-10 01:00:20 +02:00
|
|
|
}:
|
2011-07-07 23:40:43 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2011-07-07 23:40:43 +02:00
|
|
|
pname = "aeson";
|
2011-12-25 17:06:20 +01:00
|
|
|
version = "0.5.0.0";
|
|
|
|
sha256 = "1n7c0kf6rdf5p76mjcxlqrzhnfz4b1zkkbxk9w94hibb0s4kwxv6";
|
2011-08-10 01:00:20 +02:00
|
|
|
buildDepends = [
|
2011-12-25 17:06:20 +01:00
|
|
|
attoparsec blazeBuilder deepseq dlist hashable mtl syb text time
|
|
|
|
unorderedContainers vector
|
2011-07-07 23:40:43 +02:00
|
|
|
];
|
|
|
|
meta = {
|
2011-12-02 12:46:44 +01:00
|
|
|
homepage = "https://github.com/bos/aeson";
|
2011-07-07 23:40:43 +02:00
|
|
|
description = "Fast JSON parsing and encoding";
|
2011-08-07 22:24:50 +02:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 11:54:50 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2011-08-07 22:24:50 +02:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
2011-08-10 01:00:20 +02:00
|
|
|
self.stdenv.lib.maintainers.simons
|
2011-08-07 22:24:50 +02:00
|
|
|
];
|
2011-07-07 23:40:43 +02:00
|
|
|
};
|
|
|
|
})
|