haskell-retry: update to version 0.4

This commit is contained in:
Peter Simons 2014-04-28 19:17:52 +02:00
parent 7841191a84
commit d043573059
1 changed files with 5 additions and 6 deletions

View File

@ -1,13 +1,12 @@
{ cabal, dataDefault, liftedBase, monadControl, transformers }: { cabal, dataDefault, exceptions, transformers }:
cabal.mkDerivation (self: { cabal.mkDerivation (self: {
pname = "retry"; pname = "retry";
version = "0.3.0.0"; version = "0.4";
sha256 = "00yjk5784h4w1cckw17w1k5r94acc3ycnprk642ndgggz3lxm36n"; sha256 = "16njq924b5n7jyfc059dbypp529gqlc9qnzd7wjk4m7dpm5bww67";
buildDepends = [ buildDepends = [ dataDefault exceptions transformers ];
dataDefault liftedBase monadControl transformers
];
meta = { meta = {
homepage = "http://github.com/Soostone/retry";
description = "Retry combinators for monadic actions that may fail"; description = "Retry combinators for monadic actions that may fail";
license = self.stdenv.lib.licenses.bsd3; license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms; platforms = self.ghc.meta.platforms;