1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-18 10:56:53 +00:00
nixpkgs/pkgs/development/libraries/haskell/retry/default.nix
2014-04-29 01:35:48 +02:00

15 lines
471 B
Nix

{ cabal, dataDefault, exceptions, transformers }:
cabal.mkDerivation (self: {
pname = "retry";
version = "0.4";
sha256 = "16njq924b5n7jyfc059dbypp529gqlc9qnzd7wjk4m7dpm5bww67";
buildDepends = [ dataDefault exceptions transformers ];
meta = {
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;
};
})