about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2014-02-10 11:06:28 +0100
committerPeter Simons <simons@cryp.to>2014-02-10 20:54:54 +0100
commit3d0163a084751627cf82cc3c0dfbc021e9ac2f14 (patch)
tree0045f57ada5915808d1e31aed7bc7c11b1af2bb8 /pkgs
parent61d0a53ce48de27169fd0a8ee81196c8d41bd242 (diff)
downloadnixlib-3d0163a084751627cf82cc3c0dfbc021e9ac2f14.tar
nixlib-3d0163a084751627cf82cc3c0dfbc021e9ac2f14.tar.gz
nixlib-3d0163a084751627cf82cc3c0dfbc021e9ac2f14.tar.bz2
nixlib-3d0163a084751627cf82cc3c0dfbc021e9ac2f14.tar.lz
nixlib-3d0163a084751627cf82cc3c0dfbc021e9ac2f14.tar.xz
nixlib-3d0163a084751627cf82cc3c0dfbc021e9ac2f14.tar.zst
nixlib-3d0163a084751627cf82cc3c0dfbc021e9ac2f14.zip
haskell-pipes-attoparsec: update to version 0.4.0
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/haskell/pipes-attoparsec/default.nix13
1 files changed, 6 insertions, 7 deletions
diff --git a/pkgs/development/libraries/haskell/pipes-attoparsec/default.nix b/pkgs/development/libraries/haskell/pipes-attoparsec/default.nix
index 484f21045672..27f9d8a0b87c 100644
--- a/pkgs/development/libraries/haskell/pipes-attoparsec/default.nix
+++ b/pkgs/development/libraries/haskell/pipes-attoparsec/default.nix
@@ -1,16 +1,15 @@
-{ cabal, attoparsec, HUnit, mmorph, pipes, pipesParse, QuickCheck
-, testFramework, testFrameworkHunit, testFrameworkQuickcheck2, text
-, transformers
+{ cabal, attoparsec, HUnit, mmorph, pipes, pipesParse, tasty
+, tastyHunit, text, transformers
 }:
 
 cabal.mkDerivation (self: {
   pname = "pipes-attoparsec";
-  version = "0.3.1";
-  sha256 = "1bvz5fxy2mfz3swiv9jfmhxl1psmm3c7nfi58pggam52lz20va2h";
+  version = "0.4.0";
+  sha256 = "0xffqxsh8yvfdk39mdgkf0l2v284fr31nz5k16dq752p63fnczkw";
   buildDepends = [ attoparsec pipes pipesParse text transformers ];
   testDepends = [
-    attoparsec HUnit mmorph pipes pipesParse QuickCheck testFramework
-    testFrameworkHunit testFrameworkQuickcheck2 text transformers
+    attoparsec HUnit mmorph pipes pipesParse tasty tastyHunit text
+    transformers
   ];
   meta = {
     homepage = "https://github.com/k0001/pipes-attoparsec";