haskell-aeson: updated to version 0.3.2.10 in an attempt to fix build failures

That attempt was not successful, unfortunately, the package still
doesn't compile. :-(

svn path=/nixpkgs/trunk/; revision=28277
This commit is contained in:
Peter Simons 2011-08-07 20:24:50 +00:00
parent 653fb4b663
commit c37b3ffcdf

View File

@ -1,18 +1,22 @@
{cabal, attoparsec, blazeBuilder, blazeTextual, deepseq, hashable, mtl, {cabal, attoparsec, blazeBuilder, blazeTextual, deepseq, hashable,
syb, text, unorderedContainers, vector}: mtl, syb, text, unorderedContainers, vector} :
cabal.mkDerivation (self : { cabal.mkDerivation (self : {
pname = "aeson"; pname = "aeson";
version = "0.3.2.9"; version = "0.3.2.10";
sha256 = "1qaajk797zpickw4ik5lc03wnmxkrcmv3zik7n1bjqx6h37h0zqw"; sha256 = "003bd6nyayd7rd9j4ncjgv7kvsncv4sb84yskqjwiq7y0b36shj8";
propagatedBuildInputs = [ propagatedBuildInputs = [
attoparsec blazeBuilder blazeTextual deepseq hashable mtl attoparsec blazeBuilder blazeTextual deepseq hashable mtl syb text
syb text unorderedContainers vector unorderedContainers vector
]; ];
meta = { meta = {
homepage = "http://github.com/mailrank/aeson";
description = "Fast JSON parsing and encoding"; description = "Fast JSON parsing and encoding";
license = "BSD3"; license = self.stdenv.lib.licenses.bsd3;
maintainers = [self.stdenv.lib.maintainers.andres]; platforms = self.stdenv.lib.platforms.haskellPlatforms;
maintainers = [
self.stdenv.lib.maintainers.simons
self.stdenv.lib.maintainers.andres
];
}; };
}) })