summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2014-01-02 00:22:06 +0100
committerPeter Simons <simons@cryp.to>2014-01-06 12:09:57 +0100
commita397d62d312ab1cc8c8e84efb27ebdcfe754644b (patch)
tree76477118bc60596d184122820d596696c7669a7c
parent822c755ea938f70d929b436880280d91a01de569 (diff)
downloadnixpkgs-a397d62d312ab1cc8c8e84efb27ebdcfe754644b.tar
nixpkgs-a397d62d312ab1cc8c8e84efb27ebdcfe754644b.tar.gz
nixpkgs-a397d62d312ab1cc8c8e84efb27ebdcfe754644b.tar.bz2
nixpkgs-a397d62d312ab1cc8c8e84efb27ebdcfe754644b.tar.lz
nixpkgs-a397d62d312ab1cc8c8e84efb27ebdcfe754644b.tar.xz
nixpkgs-a397d62d312ab1cc8c8e84efb27ebdcfe754644b.tar.zst
nixpkgs-a397d62d312ab1cc8c8e84efb27ebdcfe754644b.zip
haskell-text: update to version 1.0.0.1
-rw-r--r--pkgs/development/libraries/haskell/text/1.0.0.1.nix (renamed from pkgs/development/libraries/haskell/text/1.0.0.0.nix)4
-rw-r--r--pkgs/top-level/haskell-packages.nix6
2 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/libraries/haskell/text/1.0.0.0.nix b/pkgs/development/libraries/haskell/text/1.0.0.1.nix
index fe740864970..31fb2eff858 100644
--- a/pkgs/development/libraries/haskell/text/1.0.0.0.nix
+++ b/pkgs/development/libraries/haskell/text/1.0.0.1.nix
@@ -4,8 +4,8 @@
 
 cabal.mkDerivation (self: {
   pname = "text";
-  version = "1.0.0.0";
-  sha256 = "13i7xn5xl8lc5hcd08i4n0qp9rx51588jnjn4c68gp87vw1gwvjn";
+  version = "1.0.0.1";
+  sha256 = "1bcwsib0iw88lkg2dyxf030wsm48q311qm4pjqhgjqr5wjvlqdj3";
   buildDepends = [ deepseq ];
   testDepends = [
     deepseq HUnit QuickCheck random testFramework testFrameworkHunit
diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix
index 47350533aea..0544665b59e 100644
--- a/pkgs/top-level/haskell-packages.nix
+++ b/pkgs/top-level/haskell-packages.nix
@@ -167,7 +167,7 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
     split        = self.split_0_2_2;
     stm          = self.stm_2_4_2;
     syb          = self.syb_0_4_1;
-    text         = self.text_1_0_0_0;
+    text         = self.text_1_0_0_1;
     transformers = self.transformers_0_3_0_0;   # this has become a core package in GHC 7.7
     unorderedContainers = self.unorderedContainers_0_2_3_3;
     vector       = self.vector_0_10_9_1;
@@ -2206,8 +2206,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
   text_0_11_2_0 = callPackage ../development/libraries/haskell/text/0.11.2.0.nix {};
   text_0_11_2_3 = callPackage ../development/libraries/haskell/text/0.11.2.3.nix {};
   text_0_11_3_1 = callPackage ../development/libraries/haskell/text/0.11.3.1.nix {};
-  text_1_0_0_0 = callPackage ../development/libraries/haskell/text/1.0.0.0.nix {};
-  text = self.text_1_0_0_0;
+  text_1_0_0_1 = callPackage ../development/libraries/haskell/text/1.0.0.1.nix {};
+  text = self.text_1_0_0_1;
 
   textFormat = callPackage ../development/libraries/haskell/text-format {};