packages feed

copr-api-0.1.0: copr-api.cabal

cabal-version:       1.22
name:                copr-api
version:             0.1.0
synopsis:            Copr API client libary
description:         Fedora Copr buildsystem client api library
homepage:            https://github.com/juhp/copr-api-hs
bug-reports:         https://github.com/juhp/copr-api-hs/issues
license:             GPL-3
license-file:        LICENSE
author:              Jens Petersen <petersen@redhat.com>
maintainer:          Jens Petersen <petersen@redhat.com>
copyright:           2020-2021 Jens Petersen
category:            Network
build-type:          Simple
extra-doc-files:     README.md
                     CHANGELOG.md
tested-with:         GHC == 8.0.2
                     GHC == 8.2.2
                     GHC == 8.4.4
                     GHC == 8.6.5
                     GHC == 8.8.4
                     GHC == 8.10.5
                     GHC == 9.0.1

source-repository head
  type:                git
  location:            https://github.com/juhp/copr-api-hs.git

library
  default-language:    Haskell2010
  exposed-modules:     Web.Fedora.Copr
                       Web.Fedora.Copr.API
  hs-source-dirs:      src

  build-depends:
                base >= 4.7 && <5
              , aeson
              , bytestring
              , directory
              , http-query
              , text
              , unordered-containers

  ghc-options:         -Wall
  if impl(ghc >= 8.0)
    ghc-options:       -Wcompat
                       -Widentities
                       -Wincomplete-uni-patterns
                       -Wincomplete-record-updates
                       -Wredundant-constraints
  if impl(ghc >= 8.2)
    ghc-options:       -fhide-source-paths
  if impl(ghc >= 8.4)
    ghc-options:       -Wmissing-export-lists
                       -Wpartial-fields
  if impl(ghc >= 8.10)
    ghc-options:       -Wunused-packages