How to Install and Uninstall ghc-blaze-builder.x86_64 Package on Fedora 39

Last updated: September 30,2024

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

Please follow the guidance below to install ghc-blaze-builder.x86_64 on Fedora 39

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

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

Please follow the instructions below to uninstall ghc-blaze-builder.x86_64 on Fedora 39:

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

3. Information about the ghc-blaze-builder.x86_64 package on Fedora 39

Last metadata expiration check: 2:36:29 ago on Thu Mar 7 17:44:52 2024.
Available Packages
Name : ghc-blaze-builder
Version : 0.4.2.2
Release : 6.fc39
Architecture : x86_64
Size : 40 k
Source : ghc-blaze-builder-0.4.2.2-6.fc39.src.rpm
Repository : fedora
Summary : Efficient buffered output
URL : https://hackage.haskell.org/package/blaze-builder
License : BSD-3-Clause
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.