How to Install and Uninstall ghc-blaze-builder.x86_64 Package on Red Hat Enterprise Linux 9 (RHEL 9)

Last updated: October 10,2024

1. Install "ghc-blaze-builder.x86_64" package

Please follow the guidelines below to install ghc-blaze-builder.x86_64 on Red Hat Enterprise Linux 9 (RHEL 9)

$ sudo dnf update $ sudo dnf install ghc-blaze-builder.x86_64

2. Uninstall "ghc-blaze-builder.x86_64" package

Please follow the guidance below to uninstall ghc-blaze-builder.x86_64 on Red Hat Enterprise Linux 9 (RHEL 9):

$ sudo dnf remove ghc-blaze-builder.x86_64 $ sudo dnf autoremove

3. Information about the ghc-blaze-builder.x86_64 package on Red Hat Enterprise Linux 9 (RHEL 9)

Last metadata expiration check: 1:07:22 ago on Mon Feb 26 07:04:30 2024.
Available Packages
Name : ghc-blaze-builder
Version : 0.4.2.2
Release : 1.el9
Architecture : x86_64
Size : 39 k
Source : ghc-blaze-builder-0.4.2.2-1.el9.src.rpm
Repository : epel
Summary : Efficient buffered output
URL : https://hackage.haskell.org/package/blaze-builder
License : BSD
Description : This library allows to efficiently serialize Haskell values to lazy bytestrings
: with a large average chunk size. The large average chunk size allows to make
: good use of cache prefetching in later processing steps (e.g.
: compression) and reduces the system call overhead when writing the resulting
: lazy bytestring to a file or sending it over the network.
:
: This library was inspired by the module Data.Binary.Builder provided by the
: binary package. It was originally developed with the specific needs of the
: blaze-html package in mind. Since then it has been restructured to serve as a
: drop-in replacement for Data.Binary.Builder, which it improves upon both in
: speed as well as expressivity.