From f52619082ee44a86342ebe10a03fbba6fbd08158 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 12 Dec 2014 10:09:26 +0100 Subject: [PATCH] haskell-text: update to version 1.2.0.2 --- .../haskell/text/{1.2.0.0.nix => 1.2.0.2.nix} | 12 ++++++------ pkgs/top-level/haskell-packages.nix | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) rename pkgs/development/libraries/haskell/text/{1.2.0.0.nix => 1.2.0.2.nix} (55%) diff --git a/pkgs/development/libraries/haskell/text/1.2.0.0.nix b/pkgs/development/libraries/haskell/text/1.2.0.2.nix similarity index 55% rename from pkgs/development/libraries/haskell/text/1.2.0.0.nix rename to pkgs/development/libraries/haskell/text/1.2.0.2.nix index c588c65ba94..9530d6b595d 100644 --- a/pkgs/development/libraries/haskell/text/1.2.0.0.nix +++ b/pkgs/development/libraries/haskell/text/1.2.0.2.nix @@ -1,17 +1,17 @@ # This file was auto-generated by cabal2nix. Please do NOT edit manually! -{ cabal, deepseq, HUnit, QuickCheck, random, testFramework -, testFrameworkHunit, testFrameworkQuickcheck2 +{ cabal, deepseq, HUnit, QuickCheck, quickcheckUnicode, random +, testFramework, testFrameworkHunit, testFrameworkQuickcheck2 }: cabal.mkDerivation (self: { pname = "text"; - version = "1.2.0.0"; - sha256 = "0c681yaqq68imj77qzy0j4iag8q90mhnnaalfwc08nzv8cr6c8z6"; + version = "1.2.0.2"; + sha256 = "1ia9ygns4yz46pmzbswvl7mgbmgw6ywnpk0cfjsgc6p9i3xxpv96"; buildDepends = [ deepseq ]; testDepends = [ - deepseq HUnit QuickCheck random testFramework testFrameworkHunit - testFrameworkQuickcheck2 + deepseq HUnit QuickCheck quickcheckUnicode random testFramework + testFrameworkHunit testFrameworkQuickcheck2 ]; doCheck = false; meta = { diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index 8ebfa4030f4..50b60a7d095 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -2564,8 +2564,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in text_0_11_2_3 = callPackage ../development/libraries/haskell/text/0.11.2.3.nix {}; text_1_1_1_3 = callPackage ../development/libraries/haskell/text/1.1.1.3.nix {}; - text_1_2_0_0 = callPackage ../development/libraries/haskell/text/1.2.0.0.nix {}; - text = self.text_1_2_0_0; + text_1_2_0_2 = callPackage ../development/libraries/haskell/text/1.2.0.2.nix {}; + text = self.text_1_2_0_2; textBinary = callPackage ../development/libraries/haskell/text-binary {};