How To Install ghc-monad-control on CentOS 7

In this tutorial we learn how to install ghc-monad-control on CentOS 7. ghc-monad-control is Lift control operations through monad transformers

Introduction

In this tutorial we learn how to install ghc-monad-control on CentOS 7.

What is ghc-monad-control

This package defines the type class MonadBaseControl, a subset of MonadBase into which generic control operations such as catch can be lifted from IO or any other base monad. Instances are based on monad transformers in MonadTransControl, which includes all standard monad transformers in the transformers library except ContT. See the lifted-base package which uses monad-control to lift IO operations from the base library (like catch or bracket) into any monad that is an instance of MonadBase or MonadBaseControl. This package is a rewrite of Anders Kaseorg’s monad-peel library. The main difference is that this package provides CPS style operators and exploits the RankNTypes and TypeFamilies language extensions to simplify and speedup most definitions. A criterion-based benchmark shows that monad-control is on average about 99% faster than monad-peel.

We can use yum or dnf to install ghc-monad-control on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install ghc-monad-control.

Install ghc-monad-control on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install ghc-monad-control using yum by running the following command:

sudo yum -y install ghc-monad-control

Install ghc-monad-control on CentOS 7 Using dnf

If you don’t have dnf installed you can install DNF on CentOS 7 first. Update yum database with dnf using the following command.

sudo dnf makecache

After updating yum database, We can install ghc-monad-control using dnf by running the following command:

sudo dnf -y install ghc-monad-control

How To Uninstall ghc-monad-control on CentOS 7

To uninstall only the ghc-monad-control package we can use the following command:

sudo dnf remove ghc-monad-control

References

Summary

In this tutorial we learn how to install ghc-monad-control on CentOS 7 using yum and dnf.