How to Install and Uninstall ghc-config-ini Package on openSUSE Leap
Last updated: November 21,2024
1. Install "ghc-config-ini" package
In this section, we are going to explain the necessary steps to install ghc-config-ini on openSUSE Leap
$
sudo zypper refresh
Copied
$
sudo zypper install
ghc-config-ini
Copied
2. Uninstall "ghc-config-ini" package
This guide covers the steps necessary to uninstall ghc-config-ini on openSUSE Leap:
$
sudo zypper remove
ghc-config-ini
Copied
3. Information about the ghc-config-ini package on openSUSE Leap
Information for package ghc-config-ini:
---------------------------------------
Repository : Main Repository
Name : ghc-config-ini
Version : 0.2.4.0-bp155.2.16
Arch : x86_64
Vendor : openSUSE
Installed Size : 590.0 KiB
Installed : No
Status : not installed
Source package : ghc-config-ini-0.2.4.0-bp155.2.16.src
Upstream URL : https://hackage.haskell.org/package/config-ini
Summary : A library for simple INI-based configuration files
Description :
The 'config-ini' library is a set of small monadic languages for writing simple
configuration languages with convenient, human-readable error messages.
> parseConfig :: IniParser (Text, Int, Bool) > parseConfig = section "NETWORK"
$ do > user <- field "user" > port <- fieldOf "port" number > enc <-
fieldFlagDef "encryption" True > return (user, port, enc).
---------------------------------------
Repository : Main Repository
Name : ghc-config-ini
Version : 0.2.4.0-bp155.2.16
Arch : x86_64
Vendor : openSUSE
Installed Size : 590.0 KiB
Installed : No
Status : not installed
Source package : ghc-config-ini-0.2.4.0-bp155.2.16.src
Upstream URL : https://hackage.haskell.org/package/config-ini
Summary : A library for simple INI-based configuration files
Description :
The 'config-ini' library is a set of small monadic languages for writing simple
configuration languages with convenient, human-readable error messages.
> parseConfig :: IniParser (Text, Int, Bool) > parseConfig = section "NETWORK"
$ do > user <- field "user" > port <- fieldOf "port" number > enc <-
fieldFlagDef "encryption" True > return (user, port, enc).