How to Install and Uninstall ghc-explicit-exception.x86_64 Package on Fedora 38

Last updated: November 28,2024

1. Install "ghc-explicit-exception.x86_64" package

This guide covers the steps necessary to install ghc-explicit-exception.x86_64 on Fedora 38

$ sudo dnf update $ sudo dnf install ghc-explicit-exception.x86_64

2. Uninstall "ghc-explicit-exception.x86_64" package

This tutorial shows how to uninstall ghc-explicit-exception.x86_64 on Fedora 38:

$ sudo dnf remove ghc-explicit-exception.x86_64 $ sudo dnf autoremove

3. Information about the ghc-explicit-exception.x86_64 package on Fedora 38

Last metadata expiration check: 0:49:20 ago on Sat Mar 16 22:59:57 2024.
Available Packages
Name : ghc-explicit-exception
Version : 0.1.10.1
Release : 2.fc38
Architecture : x86_64
Size : 60 k
Source : ghc-explicit-exception-0.1.10.1-2.fc38.src.rpm
Repository : fedora
Summary : Exceptions which are explicit in the type signature
URL : https://hackage.haskell.org/package/explicit-exception
License : BSD-3-Clause
Description : Synchronous and Asynchronous exceptions which are explicit in the type
: signature. The first ones are very similar to 'Either' and
: 'Control.Monad.Error.ErrorT'. The second ones are used for 'System.IO.readFile'
: and 'System.IO.hGetContents'. This package is a proposal for improved exception
: handling in Haskell. It strictly separates between handling of exceptional
: situations (file not found, invalid user input, see
: ) and (programming) errors (division by
: zero, index out of range, see ).
: Handling of the first one is called "exception handling", whereas handling of
: errors is better known as "debugging".