How to Install and Uninstall ghc-stm.x86_64 Package on CentOS Stream 8

Last updated: June 25,2024

1. Install "ghc-stm.x86_64" package

This guide covers the steps necessary to install ghc-stm.x86_64 on CentOS Stream 8

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

2. Uninstall "ghc-stm.x86_64" package

This tutorial shows how to uninstall ghc-stm.x86_64 on CentOS Stream 8:

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

3. Information about the ghc-stm.x86_64 package on CentOS Stream 8

Last metadata expiration check: 4:20:42 ago on Sun Feb 25 03:03:59 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.