summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2014-01-06 12:21:12 +0100
committerPeter Simons <simons@cryp.to>2014-01-06 16:34:54 +0100
commit84c9d666991c5fc9b6ab4216776acb9902b25860 (patch)
tree5d04c0a3b4cf7d609892a02ab8b9748f1f99e688 /pkgs/development
parent62c6fc26a73af832bb9d1d2a9df2d473859df2a4 (diff)
downloadnixpkgs-84c9d666991c5fc9b6ab4216776acb9902b25860.tar
nixpkgs-84c9d666991c5fc9b6ab4216776acb9902b25860.tar.gz
nixpkgs-84c9d666991c5fc9b6ab4216776acb9902b25860.tar.bz2
nixpkgs-84c9d666991c5fc9b6ab4216776acb9902b25860.tar.lz
nixpkgs-84c9d666991c5fc9b6ab4216776acb9902b25860.tar.xz
nixpkgs-84c9d666991c5fc9b6ab4216776acb9902b25860.tar.zst
nixpkgs-84c9d666991c5fc9b6ab4216776acb9902b25860.zip
haskell-lifted-async: update to version 0.1.1
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/libraries/haskell/lifted-async/default.nix11
1 files changed, 5 insertions, 6 deletions
diff --git a/pkgs/development/libraries/haskell/lifted-async/default.nix b/pkgs/development/libraries/haskell/lifted-async/default.nix
index fa48f289a4c..9eab08955f5 100644
--- a/pkgs/development/libraries/haskell/lifted-async/default.nix
+++ b/pkgs/development/libraries/haskell/lifted-async/default.nix
@@ -1,15 +1,14 @@
-{ cabal, async, HUnit, liftedBase, monadControl, mtl, testFramework
-, testFrameworkHunit, testFrameworkTh, transformersBase
+{ cabal, async, HUnit, liftedBase, monadControl, mtl, tasty
+, tastyHunit, tastyTh, transformersBase
 }:
 
 cabal.mkDerivation (self: {
   pname = "lifted-async";
-  version = "0.1.0.1";
-  sha256 = "03b89cixfin7ksdjh12g0pfrmgzw9mnx6nyvywv3rjc1sra3b8f0";
+  version = "0.1.1";
+  sha256 = "0hkqiplnvy14m881n4bzamvy1432bxy4k1j4rwl824w5fn2h5i74";
   buildDepends = [ async liftedBase monadControl transformersBase ];
   testDepends = [
-    HUnit liftedBase monadControl mtl testFramework testFrameworkHunit
-    testFrameworkTh
+    async HUnit liftedBase monadControl mtl tasty tastyHunit tastyTh
   ];
   meta = {
     homepage = "https://github.com/maoe/lifted-async";