about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2014-10-12 18:01:45 +0200
committerPeter Simons <simons@cryp.to>2014-10-13 09:12:22 +0200
commit6a5a8f86650c3049b836c6f217f3146748a4a00d (patch)
treed8da551af6445279f1694a3f64f5092630b114e4
parent850e8ad834f79633b0ce93ffc0a5bbf6757e9724 (diff)
downloadnixlib-6a5a8f86650c3049b836c6f217f3146748a4a00d.tar
nixlib-6a5a8f86650c3049b836c6f217f3146748a4a00d.tar.gz
nixlib-6a5a8f86650c3049b836c6f217f3146748a4a00d.tar.bz2
nixlib-6a5a8f86650c3049b836c6f217f3146748a4a00d.tar.lz
nixlib-6a5a8f86650c3049b836c6f217f3146748a4a00d.tar.xz
nixlib-6a5a8f86650c3049b836c6f217f3146748a4a00d.tar.zst
nixlib-6a5a8f86650c3049b836c6f217f3146748a4a00d.zip
haskell-exception-transformers: update to version 0.3.0.4
-rw-r--r--pkgs/development/libraries/haskell/exception-transformers/default.nix14
1 files changed, 9 insertions, 5 deletions
diff --git a/pkgs/development/libraries/haskell/exception-transformers/default.nix b/pkgs/development/libraries/haskell/exception-transformers/default.nix
index e6c778e981d3..2e2f828cb307 100644
--- a/pkgs/development/libraries/haskell/exception-transformers/default.nix
+++ b/pkgs/development/libraries/haskell/exception-transformers/default.nix
@@ -1,15 +1,19 @@
 # This file was auto-generated by cabal2nix. Please do NOT edit manually!
 
-{ cabal, HUnit, stm, transformers }:
+{ cabal, HUnit, stm, testFramework, testFrameworkHunit
+, transformers
+}:
 
 cabal.mkDerivation (self: {
   pname = "exception-transformers";
-  version = "0.3.0.3";
-  sha256 = "0z3z5pppaqqbndd4fgv1czr8f9f4a8r86bwc3bcv88yf7y8cfbwz";
+  version = "0.3.0.4";
+  sha256 = "1m4mwgzynymdjvrrrvl90q468pgwik07yy2lsff9spxhcd43w2ra";
   buildDepends = [ stm transformers ];
-  testDepends = [ HUnit transformers ];
+  testDepends = [
+    HUnit testFramework testFrameworkHunit transformers
+  ];
   meta = {
-    homepage = "http://www.eecs.harvard.edu/~mainland/";
+    homepage = "http://www.cs.drexel.edu/~mainland/";
     description = "Type classes and monads for unchecked extensible exceptions";
     license = self.stdenv.lib.licenses.bsd3;
     platforms = self.ghc.meta.platforms;