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

Last updated: May 13,2024

1. Install "ghc-pipes.x86_64" package

This guide covers the steps necessary to install ghc-pipes.x86_64 on Fedora 36

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

2. Uninstall "ghc-pipes.x86_64" package

This guide covers the steps necessary to uninstall ghc-pipes.x86_64 on Fedora 36:

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

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

Last metadata expiration check: 0:21:55 ago on Thu Sep 8 02:05:26 2022.
Available Packages
Name : ghc-pipes
Version : 4.3.16
Release : 2.fc36
Architecture : x86_64
Size : 63 k
Source : ghc-pipes-4.3.16-2.fc36.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.