How to Install and Uninstall ghc-monad-par.x86_64 Package on Fedora 36

Last updated: June 26,2024

1. Install "ghc-monad-par.x86_64" package

Here is a brief guide to show you how to install ghc-monad-par.x86_64 on Fedora 36

$ sudo dnf update $ sudo dnf install ghc-monad-par.x86_64

2. Uninstall "ghc-monad-par.x86_64" package

Please follow the steps below to uninstall ghc-monad-par.x86_64 on Fedora 36:

$ sudo dnf remove ghc-monad-par.x86_64 $ sudo dnf autoremove

3. Information about the ghc-monad-par.x86_64 package on Fedora 36

Last metadata expiration check: 0:34:02 ago on Thu Sep 8 02:05:26 2022.
Available Packages
Name : ghc-monad-par
Version : 0.3.5
Release : 8.fc36
Architecture : x86_64
Size : 55 k
Source : ghc-monad-par-0.3.5-8.fc36.src.rpm
Repository : fedora
Summary : A library for parallel programming based on a monad
URL : https://hackage.haskell.org/package/monad-par
License : BSD
Description : The 'Par' monad offers a simple API for parallel programming. The library works
: for parallelising both pure and 'IO' computations, although only the pure
: version is deterministic. The default implementation provides a work-stealing
: scheduler and supports forking tasks that are much lighter weight than
: IO-threads.
:
: For complete documentation see "Control.Monad.Par".
:
: Some examples of use can be found in the 'examples/' directory of the source
: package.
:
: Other related packages:
:
: * 'abstract-par' provides the type classes that abstract over different
: implementations of the 'Par' monad.
:
: * 'monad-par-extras' provides extra combinators and monad transformers layered
: on top of the 'Par' monad.
:
: Changes in 0.3.4 relative to 0.3:
:
: * Fix bugs that cause "thread blocked indefinitely on MVar" crashes.
:
: * Added "Control.Monad.Par.IO".