packages feed

aur-4.0.2: aur.cabal

name:                aur

version:             4.0.2

synopsis:            Access metadata from the Arch Linux User Repository.

homepage:            https://github.com/fosskers/haskell-aur

license:             GPL-3

license-file:        LICENSE

author:              Colin Woodbury

maintainer:          colingw@gmail.com

category:            Linux

build-type:          Simple

cabal-version:       >=1.10

description:         Access package information from Arch Linux's AUR via its
                     RPC interface. The main exposed functions reflect
                     those of the RPC:
                     .
                     * info:      Get metadata for one package.
                     .
                     * multiinfo: Get metadata for many packages at once.
                     .
                     * search:    Get limited metadata for packages that
                                  match a given regex.
                     .
                     * msearch:   Get metadata for all packages maintained
                                  by a given user.
                     .
                     By default this library supports version 3 of the RPC,
                     and hence version 3.2+ of the AUR.

source-repository head
  type:     git
  location: git://github.com/aurapm/haskell-aur.git

library
  exposed-modules:     Linux.Arch.Aur,
                       Linux.Arch.Aur.Pkgbuild,
                       Linux.Arch.Aur.Rpc,
                       Linux.Arch.Aur.Types
  
  other-extensions:    OverloadedStrings, ScopedTypeVariables
  
  build-depends:       base >=4.8 && <4.9,
                       aeson >=0.7 && <1,
                       aeson-pretty >=0.7 && <1,
                       filepath,
                       lens >=4.2 && <5,
                       lens-aeson,
                       mtl >=2.1 && <3,
                       text >=1.1 && <1.3,
                       vector >=0.10,
                       wreq >=0.4
  
  default-language:    Haskell2010