How To Install ghc-transformers on Rocky Linux 8

In this tutorial we learn how to install ghc-transformers on Rocky Linux 8. ghc-transformers is Haskell transformers library

Introduction

In this tutorial we learn how to install ghc-transformers on Rocky Linux 8.

What is ghc-transformers

This package provides the Haskell transformers library.

We can use yum or dnf to install ghc-transformers on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install ghc-transformers.

Install ghc-transformers on Rocky Linux 8 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

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

sudo dnf -y install ghc-transformers

Install ghc-transformers on Rocky Linux 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

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

sudo yum -y install ghc-transformers

How To Uninstall ghc-transformers on Rocky Linux 8

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

sudo dnf remove ghc-transformers

ghc-transformers Package Contents on Rocky Linux 8

/usr/lib/.build-id
/usr/lib/.build-id/9c
/usr/lib/.build-id/9c/47c96cc639b58a1684c618241ffedf15f4fd84
/usr/lib64/libHStransformers-0.5.2.0-ghc8.2.2.so
/usr/share/licenses/ghc-transformers
/usr/share/licenses/ghc-transformers/LICENSE

References

Summary

In this tutorial we learn how to install ghc-transformers on Rocky Linux 8 using yum and dnf.