How to Install and Uninstall ghc-wizards.x86_64 Package on Fedora 35

Last updated: October 05,2024

1. Install "ghc-wizards.x86_64" package

Here is a brief guide to show you how to install ghc-wizards.x86_64 on Fedora 35

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

2. Uninstall "ghc-wizards.x86_64" package

This guide let you learn how to uninstall ghc-wizards.x86_64 on Fedora 35:

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

3. Information about the ghc-wizards.x86_64 package on Fedora 35

Last metadata expiration check: 4:40:55 ago on Wed Sep 7 08:25:01 2022.
Available Packages
Name : ghc-wizards
Version : 1.0.3
Release : 10.fc35
Architecture : x86_64
Size : 41 k
Source : ghc-wizards-1.0.3-10.fc35.src.rpm
Repository : fedora
Summary : High level, generic library for interrogative user interfaces
URL : https://hackage.haskell.org/package/wizards
License : BSD
Description : 'wizards' is a package designed for the quick and painless development of
: /interrogative/ programs, which revolve around a "dialogue" with the user, who
: is asked a series of questions in a sequence much like an installation wizard.
:
: Everything from interactive system scripts, to installation wizards, to
: full-blown shells can be implemented with the support of 'wizards'.
:
: It is developed transparently on top of a free monad, which separates out the
: semantics of the program from any particular interface. A variety of backends
: exist, including console-based "System.Console.Wizard.Haskeline" and
: "System.Console.Wizard.BasicIO", and the pure "System.Console.Wizard.Pure".
: It is also possible to write your own backends, or extend existing back-ends
: with new features. While both built-in IO backends operate on a console, there
: is no reason why 'wizards' cannot also be used for making GUI wizard
: interfaces.
:
:
:
: See the github page for examples on usage:
:
:
:
: For creating backends, the module "System.Console.Wizard.Internal" has a brief
: tutorial.