2011-08-10 01:00:20 +02:00
|
|
|
{ cabal, attoparsec, blazeBuilder, blazeTextual, deepseq, hashable
|
|
|
|
, mtl, syb, text, time, unorderedContainers, vector
|
|
|
|
}:
|
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-02 12:46:44 +01:00
|
|
|
version = "0.4.0.0";
|
|
|
|
sha256 = "1j0m7hh82ab7lg757wq75k28llfd1igawmg4g2qdia5gimm652pa";
|
2011-08-10 01:00:20 +02:00
|
|
|
buildDepends = [
|
2011-08-07 22:24:50 +02:00
|
|
|
attoparsec blazeBuilder blazeTextual deepseq hashable mtl syb text
|
2011-08-10 01:00:20 +02:00
|
|
|
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
|
|
|
};
|
|
|
|
})
|