How to Install and Uninstall ghc-free.x86_64 Package on Fedora 34

Last updated: October 05,2024

1. Install "ghc-free.x86_64" package

This guide covers the steps necessary to install ghc-free.x86_64 on Fedora 34

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

2. Uninstall "ghc-free.x86_64" package

Please follow the guidelines below to uninstall ghc-free.x86_64 on Fedora 34:

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

3. Information about the ghc-free.x86_64 package on Fedora 34

Last metadata expiration check: 4:04:35 ago on Tue Sep 6 08:10:37 2022.
Available Packages
Name : ghc-free
Version : 5.1.3
Release : 4.fc34
Architecture : x86_64
Size : 273 k
Source : ghc-free-5.1.3-4.fc34.src.rpm
Repository : fedora
Summary : Monads for free
URL : https://hackage.haskell.org/package/free
License : BSD
Description : Free monads are useful for many tree-like structures and domain specific
: languages.
:
: If 'f' is a 'Functor' then the free 'Monad' on 'f' is the type of trees whose
: nodes are labeled with the constructors of 'f'. The word "free" is used in the
: sense of "unrestricted" rather than "zero-cost": 'Free f' makes no constraining
: assumptions beyond those given by 'f' and the definition of 'Monad'.
: As used here it is a standard term from the mathematical theory of adjoint
: functors.
:
: Cofree comonads are dual to free monads. They provide convenient ways to talk
: about branching streams and rose-trees, and can be used to annotate syntax
: trees. The cofree comonad can be seen as a stream parameterized by a 'Functor'
: that controls its branching factor.
:
: More information on free monads, including examples, can be found in the
: following blog posts:
: .