How to Install and Uninstall ghc-serialise.x86_64 Package on AlmaLinux 9

Last updated: June 30,2024

1. Install "ghc-serialise.x86_64" package

Here is a brief guide to show you how to install ghc-serialise.x86_64 on AlmaLinux 9

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

2. Uninstall "ghc-serialise.x86_64" package

Please follow the guidance below to uninstall ghc-serialise.x86_64 on AlmaLinux 9:

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

3. Information about the ghc-serialise.x86_64 package on AlmaLinux 9

Last metadata expiration check: 0:37:29 ago on Wed Mar 13 07:41:12 2024.
Available Packages
Name : ghc-serialise
Version : 0.2.4.0
Release : 1.el9
Architecture : x86_64
Size : 104 k
Source : ghc-serialise-0.2.4.0-1.el9.src.rpm
Repository : epel
Summary : A binary serialisation library for Haskell values
URL : https://hackage.haskell.org/package/serialise
License : BSD
Description : This package (formerly 'binary-serialise-cbor') provides pure, efficient
: serialization of Haskell values directly into 'ByteString's for storage or
: transmission purposes. By providing a set of type class instances, you can also
: serialise any custom data type you have as well.
:
: The underlying binary format used is the 'Concise Binary Object
: Representation', or CBOR, specified in RFC 7049. As a result, serialised
: Haskell values have implicit structure outside of the Haskell program itself,
: meaning they can be inspected or analyzed without custom tools.
:
: An implementation of the standard bijection between CBOR and JSON is provided
: by the [cborg-json](/package/cborg-json) package. Also see
: [cbor-tool](/package/cbor-tool) for a convenient command-line utility for
: working with CBOR data.