How to Install and Uninstall ghc-retry.x86_64 Package on Fedora 36

Last updated: November 28,2024

1. Install "ghc-retry.x86_64" package

Please follow the instructions below to install ghc-retry.x86_64 on Fedora 36

$ sudo dnf update $ sudo dnf install ghc-retry.x86_64

2. Uninstall "ghc-retry.x86_64" package

Please follow the step by step instructions below to uninstall ghc-retry.x86_64 on Fedora 36:

$ sudo dnf remove ghc-retry.x86_64 $ sudo dnf autoremove

3. Information about the ghc-retry.x86_64 package on Fedora 36

Last metadata expiration check: 4:06:02 ago on Thu Sep 8 02:05:26 2022.
Available Packages
Name : ghc-retry
Version : 0.8.1.2
Release : 13.fc36
Architecture : x86_64
Size : 36 k
Source : ghc-retry-0.8.1.2-13.fc36.src.rpm
Repository : fedora
Summary : Retry combinators for monadic actions that may fail
URL : https://hackage.haskell.org/package/retry
License : BSD
Description : This package exposes combinators that can wrap arbitrary monadic actions.
: They run the action and potentially retry running it with some configurable
: delay for a configurable number of times. The purpose is to make it easier to
: work with IO and especially network IO actions that often experience temporary
: failure and warrant retrying of the original action. For example, a database
: query may time out for a while, in which case we should hang back for a bit and
: retry the query instead of simply raising an exception.