summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/hashable
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2013-02-24 22:09:07 +0100
committerPeter Simons <simons@cryp.to>2013-02-25 00:32:40 +0100
commita30df956918aab12b7e83539ca98dafa9a829af4 (patch)
tree981222687f44e0b24f1cbdd095127c4c6e630b49 /pkgs/development/libraries/haskell/hashable
parentd0bfd6936e640db813c21d6c6fc34421ff49e941 (diff)
downloadnixlib-a30df956918aab12b7e83539ca98dafa9a829af4.tar
nixlib-a30df956918aab12b7e83539ca98dafa9a829af4.tar.gz
nixlib-a30df956918aab12b7e83539ca98dafa9a829af4.tar.bz2
nixlib-a30df956918aab12b7e83539ca98dafa9a829af4.tar.lz
nixlib-a30df956918aab12b7e83539ca98dafa9a829af4.tar.xz
nixlib-a30df956918aab12b7e83539ca98dafa9a829af4.tar.zst
nixlib-a30df956918aab12b7e83539ca98dafa9a829af4.zip
Re-generate all Haskell packages with the latest version of cabal2nix.
This change brings support for building and running the regressions test suites.
Diffstat (limited to 'pkgs/development/libraries/haskell/hashable')
-rw-r--r--pkgs/development/libraries/haskell/hashable/1.1.2.5.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/pkgs/development/libraries/haskell/hashable/1.1.2.5.nix b/pkgs/development/libraries/haskell/hashable/1.1.2.5.nix
index 96fe7ae0eb13..ffb3f98e8b33 100644
--- a/pkgs/development/libraries/haskell/hashable/1.1.2.5.nix
+++ b/pkgs/development/libraries/haskell/hashable/1.1.2.5.nix
@@ -1,10 +1,15 @@
-{ cabal, text }:
+{ cabal, QuickCheck, random, testFramework
+, testFrameworkQuickcheck2, text
+}:
 
 cabal.mkDerivation (self: {
   pname = "hashable";
   version = "1.1.2.5";
   sha256 = "0gbiaj5ck2bvvinndp2pg7qsm2h2izbnz9wi97dbm7i8r4qd9d9z";
   buildDepends = [ text ];
+  testDepends = [
+    QuickCheck random testFramework testFrameworkQuickcheck2 text
+  ];
   meta = {
     homepage = "http://github.com/tibbe/hashable";
     description = "A class for types that can be converted to a hash value";