haskell-attoparsec: add version 0.11.3.4

This commit is contained in:
Peter Simons 2014-05-24 10:54:33 +02:00
parent 9b86fb4ea4
commit ecaf15c324
3 changed files with 24 additions and 1 deletions

View File

@ -0,0 +1,20 @@
{ cabal, deepseq, QuickCheck, scientific, testFramework
, testFrameworkQuickcheck2, text
}:
cabal.mkDerivation (self: {
pname = "attoparsec";
version = "0.11.3.4";
sha256 = "1zahmkb0n7jz0di35x3r8s0xnfg1awqybh2x2zicxbwazl4f53hi";
buildDepends = [ deepseq scientific text ];
testDepends = [
QuickCheck testFramework testFrameworkQuickcheck2 text
];
meta = {
homepage = "https://github.com/bos/attoparsec";
description = "Fast combinator parsing for bytestrings and text";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})

View File

@ -46,10 +46,12 @@
ghc742Prefs = self : super : ghc763Prefs self super // {
aeson = super.aeson.override { blazeBuilder = self.blazeBuilder; };
attoparsec = self.attoparsec_0_11_3_1;
extensibleExceptions = null; # core package in ghc <= 7.4.x
hackageDb = super.hackageDb.override { Cabal = self.Cabal_1_16_0_3; };
haddock = self.haddock_2_11_0;
haskeline = super.haskeline.override { cabal = self.cabal.override { Cabal = self.Cabal_1_16_0_3; }; };
scientific = self.scientific_0_2_0_2;
};
ghc722Prefs = self : super : ghc742Prefs self super // {

View File

@ -191,7 +191,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
attoparsec_0_10_4_0 = callPackage ../development/libraries/haskell/attoparsec/0.10.4.0.nix {};
attoparsec_0_11_3_1 = callPackage ../development/libraries/haskell/attoparsec/0.11.3.1.nix {};
attoparsec = self.attoparsec_0_11_3_1;
attoparsec_0_11_3_4 = callPackage ../development/libraries/haskell/attoparsec/0.11.3.4.nix {};
attoparsec = self.attoparsec_0_11_3_4;
attoparsecBinary = callPackage ../development/libraries/haskell/attoparsec-binary {};