packages feed

ini-qq-0.1.0.0: ini-qq.cabal

name:                ini-qq
version:             0.1.0.0
synopsis:            Quasiquoter for INI
description:         This library provides quasiquoters for the ini package.
homepage:            https://github.com/kseo/ini-qq#readme
license:             BSD3
license-file:        LICENSE
author:              Kwang Yul Seo
maintainer:          kwangyul.seo@gmail.com
copyright:           BSD3
category:            Data, Configuration
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10
tested-with:         GHC >= 8.0.1

library
  hs-source-dirs:      src
  exposed-modules:     Data.Ini.QQ
  build-depends:       base >= 4.7 && < 5
                     , ini >= 0.3 && < 0.4
                     , template-haskell >= 2.10
                     , text
  default-language:    Haskell2010

test-suite ini-qq-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Spec.hs
  build-depends:       base
                     , HUnit
                     , ini
                     , ini-qq
                     , raw-strings-qq
                     , text
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/kseo/ini-qq