How to Install and Uninstall ghc-managed.x86_64 Package on Fedora 35

Last updated: October 09,2024

1. Install "ghc-managed.x86_64" package

This tutorial shows how to install ghc-managed.x86_64 on Fedora 35

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

2. Uninstall "ghc-managed.x86_64" package

This is a short guide on how to uninstall ghc-managed.x86_64 on Fedora 35:

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

3. Information about the ghc-managed.x86_64 package on Fedora 35

Last metadata expiration check: 4:59:49 ago on Wed Sep 7 02:25:42 2022.
Available Packages
Name : ghc-managed
Version : 1.0.8
Release : 1.fc35
Architecture : x86_64
Size : 23 k
Source : ghc-managed-1.0.8-1.fc35.src.rpm
Repository : fedora
Summary : A monad for managed values
URL : https://hackage.haskell.org/package/managed
License : BSD
Description : In Haskell you very often acquire values using the 'with...' idiom using
: functions of type '(a -> IO r) -> IO r'. This idiom forms a 'Monad', which is a
: special case of the 'ContT' monad (from 'transformers') or the 'Codensity'
: monad (from 'kan-extensions'). The main purpose behind this package is to
: provide a restricted form of these monads specialized to this unusually common
: case.
:
: The reason this package defines a specialized version of these types is to:
:
: * be more beginner-friendly,
: * simplify inferred types and error messages, and:
: * provide some additional type class instances that would otherwise be orphan
: instances.