How to Install and Uninstall ghc-parsec.x86_64 Package on Rocky Linux 8

Last updated: September 19,2024

1. Install "ghc-parsec.x86_64" package

This guide let you learn how to install ghc-parsec.x86_64 on Rocky Linux 8

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

2. Uninstall "ghc-parsec.x86_64" package

This tutorial shows how to uninstall ghc-parsec.x86_64 on Rocky Linux 8:

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

3. Information about the ghc-parsec.x86_64 package on Rocky Linux 8

Last metadata expiration check: 1:15:11 ago on Mon Sep 12 10:27:18 2022.
Available Packages
Name : ghc-parsec
Version : 3.1.13.0
Release : 1.el8
Architecture : x86_64
Size : 120 k
Source : ghc-parsec-3.1.13.0-1.el8.src.rpm
Repository : epel
Summary : Monadic parser combinators
URL : https://hackage.haskell.org/package/parsec
License : BSD
Description : Parsec is designed from scratch as an industrial-strength parser library.
: It is simple, safe, well documented (on the package homepage), has extensive
: libraries, good error messages, and is fast. It is defined as a monad
: transformer that can be stacked on arbitrary monads, and it is also parametric
: in the input stream type.
:
: The main entry point is the "Text.Parsec" module which provides defaults for
: parsing 'Char'acter data.
:
: The "Text.ParserCombinators.Parsec" module hierarchy contains the legacy
: 'parsec-2' API and may be removed at some point in the future.