haskell-attoparsec: update to version 0.12.1.2

This commit is contained in:
Peter Simons 2014-09-10 20:49:25 +02:00
parent 47d02a94e5
commit 6b1ba06bac
2 changed files with 6 additions and 7 deletions

View File

@ -1,23 +1,22 @@
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, deepseq, QuickCheck, scientific, testFramework
, testFrameworkQuickcheck2, text
, testFrameworkQuickcheck2, text, vector
}:
cabal.mkDerivation (self: {
pname = "attoparsec";
version = "0.12.1.1";
sha256 = "0whj2wscw9pdf6avnhnqiapsllh6228j4hifyfvr4v0w663plh7p";
version = "0.12.1.2";
sha256 = "1vazyr3fdahdg1q503sbj0zv4xj7sm7j32mjm856bm51j2s0rhlc";
buildDepends = [ deepseq scientific text ];
testDepends = [
deepseq QuickCheck scientific testFramework
testFrameworkQuickcheck2 text
testFrameworkQuickcheck2 text vector
];
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;
hydraPlatforms = self.stdenv.lib.platforms.none;
};
})

View File

@ -202,8 +202,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_0_11_3_4 = callPackage ../development/libraries/haskell/attoparsec/0.11.3.4.nix {};
attoparsec_0_12_1_1 = callPackage ../development/libraries/haskell/attoparsec/0.12.1.1.nix {};
attoparsec = self.attoparsec_0_12_1_1;
attoparsec_0_12_1_2 = callPackage ../development/libraries/haskell/attoparsec/0.12.1.2.nix {};
attoparsec = self.attoparsec_0_12_1_2;
attoparsecBinary = callPackage ../development/libraries/haskell/attoparsec-binary {};