haskell-aeson: add version 0.7.0.0 (but don't use it yet)

This commit is contained in:
Peter Simons 2014-01-20 12:43:49 +01:00
parent 12bb3d783b
commit e701d2b062
3 changed files with 29 additions and 1 deletions

View File

@ -0,0 +1,26 @@
{ cabal, attoparsec, deepseq, dlist, hashable, HUnit, mtl
, QuickCheck, scientific, syb, testFramework, testFrameworkHunit
, testFrameworkQuickcheck2, text, time, unorderedContainers, vector
}:
cabal.mkDerivation (self: {
pname = "aeson";
version = "0.7.0.0";
sha256 = "14xh7i07ha2hgljq0y0v7f5gkn0pv2zqj8l9j92957mf7f17zwf6";
buildDepends = [
attoparsec deepseq dlist hashable mtl scientific syb text time
unorderedContainers vector
];
testDepends = [
attoparsec HUnit QuickCheck testFramework testFrameworkHunit
testFrameworkQuickcheck2 text time unorderedContainers vector
];
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 ];
};
})

View File

@ -522,7 +522,9 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
abstractPar = callPackage ../development/libraries/haskell/abstract-par {};
aeson = callPackage ../development/libraries/haskell/aeson {};
aeson_0_6_2_1 = callPackage ../development/libraries/haskell/aeson/0.6.2.1.nix {};
aeson_0_7_0_0 = callPackage ../development/libraries/haskell/aeson/0.7.0.0.nix {};
aeson = self.aeson_0_6_2_1;
aesonLens = callPackage ../development/libraries/haskell/aeson-lens {};