haskell-aeson: fix build with ghc 7.6.x
This commit is contained in:
parent
02016e9026
commit
b5fb80ffa3
@ -51,6 +51,7 @@ self: super: {
|
|||||||
# Haddock chokes on the prologue from the cabal file.
|
# Haddock chokes on the prologue from the cabal file.
|
||||||
ChasingBottoms = dontHaddock super.ChasingBottoms;
|
ChasingBottoms = dontHaddock super.ChasingBottoms;
|
||||||
|
|
||||||
# wizards = doJailbreak super.wizards;
|
# Later versions require a newer version of bytestring than we have.
|
||||||
|
aeson = self.aeson_0_7_0_6;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -16313,6 +16313,33 @@ self: {
|
|||||||
hydraPlatforms = stdenv.lib.platforms.none;
|
hydraPlatforms = stdenv.lib.platforms.none;
|
||||||
}) {};
|
}) {};
|
||||||
|
|
||||||
|
"aeson_0_7_0_6" = callPackage
|
||||||
|
({ mkDerivation, attoparsec, base, blaze-builder, bytestring
|
||||||
|
, containers, deepseq, dlist, ghc-prim, hashable, HUnit, mtl
|
||||||
|
, old-locale, QuickCheck, scientific, syb, template-haskell
|
||||||
|
, test-framework, test-framework-hunit, test-framework-quickcheck2
|
||||||
|
, text, time, unordered-containers, vector
|
||||||
|
}:
|
||||||
|
mkDerivation {
|
||||||
|
pname = "aeson";
|
||||||
|
version = "0.7.0.6";
|
||||||
|
sha256 = "0vsf9msz9iv7xvsnys5c0kbkldb0pvhiai02vz50b0d1kdsk2mb4";
|
||||||
|
editedCabalFile = "8b87a1343dd8d93d98e48e530f2ec14f5949fcdc96c8ecc81458a1d20defd001";
|
||||||
|
buildDepends = [
|
||||||
|
attoparsec base blaze-builder bytestring containers deepseq dlist
|
||||||
|
ghc-prim hashable mtl old-locale scientific syb template-haskell
|
||||||
|
text time unordered-containers vector
|
||||||
|
];
|
||||||
|
testDepends = [
|
||||||
|
attoparsec base bytestring containers ghc-prim HUnit QuickCheck
|
||||||
|
template-haskell test-framework test-framework-hunit
|
||||||
|
test-framework-quickcheck2 text time unordered-containers vector
|
||||||
|
];
|
||||||
|
homepage = "https://github.com/bos/aeson";
|
||||||
|
description = "Fast JSON parsing and encoding";
|
||||||
|
license = stdenv.lib.licenses.bsd3;
|
||||||
|
}) {};
|
||||||
|
|
||||||
"aeson" = callPackage
|
"aeson" = callPackage
|
||||||
({ mkDerivation, attoparsec, base, blaze-builder, bytestring
|
({ mkDerivation, attoparsec, base, blaze-builder, bytestring
|
||||||
, containers, deepseq, dlist, ghc-prim, hashable, HUnit, mtl
|
, containers, deepseq, dlist, ghc-prim, hashable, HUnit, mtl
|
||||||
|
Loading…
x
Reference in New Issue
Block a user