summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2013-04-22 11:28:17 +0200
committerPeter Simons <simons@cryp.to>2013-04-22 14:14:39 +0200
commit5a28754957f77c95431d1d409bd7c1d5488f5108 (patch)
treedbbb6e0be164265fb839c21cc66413e0a18887d7
parenta2ddd3643e03767321edee7edffb3cbab7f9ab83 (diff)
downloadnixlib-5a28754957f77c95431d1d409bd7c1d5488f5108.tar
nixlib-5a28754957f77c95431d1d409bd7c1d5488f5108.tar.gz
nixlib-5a28754957f77c95431d1d409bd7c1d5488f5108.tar.bz2
nixlib-5a28754957f77c95431d1d409bd7c1d5488f5108.tar.lz
nixlib-5a28754957f77c95431d1d409bd7c1d5488f5108.tar.xz
nixlib-5a28754957f77c95431d1d409bd7c1d5488f5108.tar.zst
nixlib-5a28754957f77c95431d1d409bd7c1d5488f5108.zip
haskell-hashable: add version 1.2.0.6
-rw-r--r--pkgs/development/libraries/haskell/hashable/1.2.0.6.nix (renamed from pkgs/development/libraries/haskell/hashable/1.2.0.5.nix)12
-rw-r--r--pkgs/top-level/haskell-packages.nix2
2 files changed, 10 insertions, 4 deletions
diff --git a/pkgs/development/libraries/haskell/hashable/1.2.0.5.nix b/pkgs/development/libraries/haskell/hashable/1.2.0.6.nix
index d7d89ee86122..3cf4aaafaeaa 100644
--- a/pkgs/development/libraries/haskell/hashable/1.2.0.5.nix
+++ b/pkgs/development/libraries/haskell/hashable/1.2.0.6.nix
@@ -1,10 +1,16 @@
-{ cabal, text }:
+{ cabal, HUnit, QuickCheck, random, testFramework
+, testFrameworkHunit, testFrameworkQuickcheck2, text
+}:
 
 cabal.mkDerivation (self: {
   pname = "hashable";
-  version = "1.2.0.5";
-  sha256 = "0frqr294bsx4i21xxd5pw59xpaf0nww0dh4bqn0ywblsm9c7nyqh";
+  version = "1.2.0.6";
+  sha256 = "0kd0vk87pgrir5zx7b30dvv2lsjjiykqi1gpalkgmgbvhals4p9z";
   buildDepends = [ text ];
+  testDepends = [
+    HUnit QuickCheck random testFramework testFrameworkHunit
+    testFrameworkQuickcheck2 text
+  ];
   meta = {
     homepage = "http://github.com/tibbe/hashable";
     description = "A class for types that can be converted to a hash value";
diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix
index 3bf5d3d7f749..32c7dc0e6d59 100644
--- a/pkgs/top-level/haskell-packages.nix
+++ b/pkgs/top-level/haskell-packages.nix
@@ -1003,7 +1003,7 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
   happstackHamlet = callPackage ../development/libraries/haskell/happstack/happstack-hamlet.nix {};
 
   hashable_1_1_2_5 = callPackage ../development/libraries/haskell/hashable/1.1.2.5.nix {};
-  hashable_1_2_0_5 = callPackage ../development/libraries/haskell/hashable/1.2.0.5.nix {};
+  hashable_1_2_0_6 = callPackage ../development/libraries/haskell/hashable/1.2.0.6.nix {};
   hashable = self.hashable_1_1_2_5;
 
   hashedStorage = callPackage ../development/libraries/haskell/hashed-storage {};