How to Install and Uninstall ghc-STMonadTrans.x86_64 Package on Oracle Linux 9

Last updated: October 06,2024

1. Install "ghc-STMonadTrans.x86_64" package

This is a short guide on how to install ghc-STMonadTrans.x86_64 on Oracle Linux 9

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

2. Uninstall "ghc-STMonadTrans.x86_64" package

In this section, we are going to explain the necessary steps to uninstall ghc-STMonadTrans.x86_64 on Oracle Linux 9:

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

3. Information about the ghc-STMonadTrans.x86_64 package on Oracle Linux 9

Last metadata expiration check: 1:44:18 ago on Thu Feb 15 07:50:05 2024.
Available Packages
Name : ghc-STMonadTrans
Version : 0.4.6
Release : 1.el9
Architecture : x86_64
Size : 40 k
Source : ghc-STMonadTrans-0.4.6-1.el9.src.rpm
Repository : epel
Summary : A monad transformer version of the ST monad
URL : https://hackage.haskell.org/package/STMonadTrans
License : BSD
Description : A monad transformer version of the ST monad. This monad transformer
: should not be used with monads that can contain multiple answers, like the list
: monad. The reason is that the state token will be duplicated across the
: different answers and this causes Bad Things to happen (such as loss of
: referential transparency). Safe monads include the monads State, Reader,
: Writer, Maybe and combinations of their corresponding monad transformers.