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

Last updated: October 07,2024

1. Install "ghc-pipes.x86_64" package

In this section, we are going to explain the necessary steps to install ghc-pipes.x86_64 on Fedora 34

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

2. Uninstall "ghc-pipes.x86_64" package

This is a short guide on how to uninstall ghc-pipes.x86_64 on Fedora 34:

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

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

Last metadata expiration check: 0:21:04 ago on Tue Sep 6 08:10:37 2022.
Available Packages
Name : ghc-pipes
Version : 4.3.13
Release : 5.fc34
Architecture : x86_64
Size : 63 k
Source : ghc-pipes-4.3.13-5.fc34.src.rpm
Repository : fedora
Summary : Compositional pipelines
URL : https://hackage.haskell.org/package/pipes
License : BSD
Description : Pipes is a clean and powerful stream processing library that lets you build
: and connect reusable streaming components
:
: Advantages over traditional streaming libraries:
: * Concise API: Use simple commands like 'for', ('>->'), 'await', and 'yield'
: * Blazing fast: Implementation tuned for speed, including shortcut fusion
: * Lightweight Dependency: pipes is small and compiles very rapidly,
: including dependencies
: * Elegant semantics: Use practical category theory
: * ListT: Correct implementation of ListT that interconverts with pipes
: * Bidirectionality: Implement duplex channels
: * Extensive Documentation: Second to none!
:
: Import "Pipes" to use the library.
: Read "Pipes.Tutorial" for an extensive tutorial.