packages feed

gettext-th-0.1.0.2: gettext-th.cabal

cabal-version:      2.4
name:               gettext-th
version:            0.1.0.2

synopsis: gettext-th can internationalise a haskell program without runtime dependencies

-- A longer description of the package.
description:
       The [gettext](https://www.gnu.org/software/gettext/) project provides a library and tools for internationalization and localization of software. gettext-th allows you to use the gettext tooling without adding any runtime dependencies because texts are exchanged at compile time. But this also means that you have an application per language.

bug-reports: https://github.com/chrbauer/gettext-th/issues
homepage:  https://github.com/chrbauer/gettext-th
-- The license under which the package is released.
license: BSD-3-Clause
author:             Christoph Bauer
maintainer:         mail@christoph-bauer.net

-- A copyright notice.
-- copyright:
category: i18, Text
extra-source-files: CHANGELOG.md, README.md

library
    exposed-modules:  I18N.Gettext.TH

    -- Modules included in this library but not exported.
    -- other-modules:

    -- LANGUAGE extensions used by modules in this package.
    -- other-extensions:
    build-depends:    base  >= 4 && < 5
                    , bytestring
                    , directory
                    , filepath
                    , haskell-gettext
                    , template-haskell
                    , text
    hs-source-dirs:   src
    default-language: Haskell2010
    ghc-options: -Wall -fwarn-tabs 
    default-extensions: TemplateHaskell, TupleSections, DeriveLift, RecordWildCards, QuasiQuotes, OverloadedStrings, FlexibleContexts