How to Install and Uninstall ghc-stm.x86_64 Package on Red Hat Enterprise Linux 8 (RHEL 8)

Last updated: October 12,2024

1. Install "ghc-stm.x86_64" package

Learn how to install ghc-stm.x86_64 on Red Hat Enterprise Linux 8 (RHEL 8)

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

2. Uninstall "ghc-stm.x86_64" package

Here is a brief guide to show you how to uninstall ghc-stm.x86_64 on Red Hat Enterprise Linux 8 (RHEL 8):

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

3. Information about the ghc-stm.x86_64 package on Red Hat Enterprise Linux 8 (RHEL 8)

Last metadata expiration check: 1:26:55 ago on Mon Feb 26 15:59:38 2024.
Available Packages
Name : ghc-stm
Version : 2.4.5.0
Release : 1.el8
Architecture : x86_64
Size : 35 k
Source : ghc-stm-2.4.5.0-1.el8.src.rpm
Repository : epel
Summary : Software Transactional Memory
URL : https://hackage.haskell.org/package/stm
License : BSD
Description : Software Transactional Memory, or STM, is an abstraction for concurrent
: communication. The main benefits of STM are /composability/ and /modularity/.
: That is, using STM you can write concurrent abstractions that can be easily
: composed with any other abstraction built using STM, without exposing the
: details of how your abstraction ensures safety. This is typically not the case
: with other forms of concurrent communication, such as locks or 'MVar's.