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

Last updated: May 18,2024

1. Install "ghc-HTTP.x86_64" package

Please follow the guidance below to install ghc-HTTP.x86_64 on Fedora 34

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

2. Uninstall "ghc-HTTP.x86_64" package

Please follow the instructions below to uninstall ghc-HTTP.x86_64 on Fedora 34:

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

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

Last metadata expiration check: 2:57:53 ago on Tue Sep 6 08:10:37 2022.
Available Packages
Name : ghc-HTTP
Version : 4000.3.14
Release : 7.fc34
Architecture : x86_64
Size : 197 k
Source : ghc-HTTP-4000.3.14-7.fc34.src.rpm
Repository : fedora
Summary : A library for client-side HTTP
URL : https://hackage.haskell.org/package/HTTP
License : BSD
Description : The HTTP package supports client-side web programming in Haskell. It lets you
: set up HTTP connections, transmitting requests and processing the responses
: coming back, all from within the comforts of Haskell. It's dependent on the
: network package to operate, but other than that, the implementation is all
: written in Haskell.
:
: A basic API for issuing single HTTP requests + receiving responses is provided.
: On top of that, a session-level abstraction is also on offer (the
: 'BrowserAction' monad); it taking care of handling the management of persistent
: connections, proxies, state (cookies) and authentication credentials required
: to handle multi-step interactions with a web server.
:
: The representation of the bytes flowing across is extensible via the use of a
: type class, letting you pick the representation of requests and responses that
: best fits your use. Some pre-packaged, common instances are provided for
: 'ByteString' and 'String'.