How to Install and Uninstall ghc-blaze-builder.x86_64 Package on CentOS Stream 9

Last updated: September 28,2024

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

In this section, we are going to explain the necessary steps to install ghc-blaze-builder.x86_64 on CentOS Stream 9

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

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

Please follow the steps below to uninstall ghc-blaze-builder.x86_64 on CentOS Stream 9:

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

3. Information about the ghc-blaze-builder.x86_64 package on CentOS Stream 9

Last metadata expiration check: 3:14:49 ago on Sat Mar 16 16:03:45 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.