nixpkgs/pkgs/development/libraries/haskell/retry/default.nix

16 lines
491 B
Nix
Raw Normal View History

2014-04-28 18:17:52 +01:00
{ cabal, dataDefault, exceptions, transformers }:
cabal.mkDerivation (self: {
pname = "retry";
2014-04-28 18:17:52 +01:00
version = "0.4";
sha256 = "16njq924b5n7jyfc059dbypp529gqlc9qnzd7wjk4m7dpm5bww67";
buildDepends = [ dataDefault exceptions transformers ];
jailbreak = true;
meta = {
2014-04-28 18:17:52 +01:00
homepage = "http://github.com/Soostone/retry";
description = "Retry combinators for monadic actions that may fail";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})