From c70222d3d6c518d2231abf5e3bddf07d02f6d1be Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 18 Sep 2013 10:24:41 +0200 Subject: [PATCH] haskell-pem: update to version 0.2.0 --- pkgs/development/libraries/haskell/pem/default.nix | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/pkgs/development/libraries/haskell/pem/default.nix b/pkgs/development/libraries/haskell/pem/default.nix index 16b47a9c8ae..473f15c4d1f 100644 --- a/pkgs/development/libraries/haskell/pem/default.nix +++ b/pkgs/development/libraries/haskell/pem/default.nix @@ -1,14 +1,15 @@ -{ cabal, attoparsec, base64Bytestring, cereal, mtl, QuickCheck -, testFramework, testFrameworkQuickcheck2 +{ cabal, base64Bytestring, HUnit, mtl, QuickCheck, testFramework +, testFrameworkHunit, testFrameworkQuickcheck2 }: cabal.mkDerivation (self: { pname = "pem"; - version = "0.1.2"; - sha256 = "1p2sw36b9w6lf53jzj86ibyy9a48fjd786mx3x8mvc5lczx8v78m"; - buildDepends = [ attoparsec base64Bytestring cereal mtl ]; + version = "0.2.0"; + sha256 = "1hmsyavqzjx1chbn4a8vf0r2wz2fg0xl9cxgja4ap04si3qr458v"; + buildDepends = [ base64Bytestring mtl ]; testDepends = [ - QuickCheck testFramework testFrameworkQuickcheck2 + HUnit QuickCheck testFramework testFrameworkHunit + testFrameworkQuickcheck2 ]; meta = { homepage = "http://github.com/vincenthz/hs-pem";