aa51bc57f8
See <https://github.com/bos/aeson/issues/122> for further detail.
27 lines
814 B
Nix
27 lines
814 B
Nix
{ cabal, attoparsec, blazeBuilder, deepseq, dlist, hashable, mtl
|
|
, QuickCheck, syb, testFramework, testFrameworkQuickcheck2, text
|
|
, time, unorderedContainers, vector
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "aeson";
|
|
version = "0.6.1.0";
|
|
sha256 = "16hjwcybmgmk1sg8x02r9bxisx4gl61rlq8w2zsxfgkxwjpfhkbx";
|
|
buildDepends = [
|
|
attoparsec blazeBuilder deepseq dlist hashable mtl syb text time
|
|
unorderedContainers vector
|
|
];
|
|
testDepends = [
|
|
attoparsec QuickCheck testFramework testFrameworkQuickcheck2 text
|
|
time
|
|
];
|
|
doCheck = false;
|
|
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 ];
|
|
};
|
|
})
|