packages feed

fedora-packages-0.0.2: fedora-packages.cabal

name:                fedora-packages
version:             0.0.2
synopsis:            Haskell interface to the Fedora Packages webapp API.
description:         Provides access to the (<https://apps.fedoraproject.org/packages/ Fedora Packages>) API.
homepage:            https://github.com/CodeBlock/fedora-packages-hs
license:             BSD3
license-file:        LICENSE
author:              Ricky Elrod
maintainer:          ricky@elrod.me
copyright:           (c) 2014 Ricky Elrod
category:            Fedora, Web
build-type:          Simple
cabal-version:       >=1.10

library
  exposed-modules:     Fedora.Packages
                     , Fedora.Packages.API
                     , Fedora.Packages.Builds
                     , Fedora.Packages.Bugs
                     , Fedora.Packages.Config
                     , Fedora.Packages.Lens
                     , Fedora.Packages.Releases
                     , Fedora.Packages.Search

  build-depends:       aeson >= 0.6
                     , base >=4.6 && <4.7
                     , bytestring >= 0.10
                     , containers >= 0.5
                     , http-streams >= 0.7
                     , HsOpenSSL >= 0.10
                     , io-streams >= 1.1
                     , lens >= 4 && < 5
                     , text >= 0.11
  hs-source-dirs:      src
  default-language:    Haskell2010
  ghc-options:         -Wall -O2


test-suite hunit
  hs-source-dirs:      tests src
  main-is:             Spec.hs
  type:                exitcode-stdio-1.0
  ghc-options:         -Wall -threaded -rtsopts -with-rtsopts=-N
  default-language:    Haskell2010
  build-depends:       aeson >= 0.6
                     , base >=4.6 && <4.7
                     , bytestring >= 0.10
                     , containers >= 0.5
                     , http-streams >= 0.7
                     , HsOpenSSL >= 0.10
                     , io-streams >= 1.1
                     , lens >= 4 && < 5
                     , text >= 0.11
                     -- And of course...
                     , hspec ==1.8.*

test-suite hlint
  hs-source-dirs:      tests
  main-is:             hlint.hs
  type:                exitcode-stdio-1.0
  default-language:    Haskell2010
  ghc-options:         -Wall -threaded -rtsopts -with-rtsopts=-N
  build-depends:       base
                     , hlint >= 1.7

source-repository head
  type:     git
  location: git://github.com/CodeBlock/fedora-packages-hs.git