packages feed

yesod-auth-smbclient-1.0.0.0: yesod-auth-smbclient.cabal

-- For further documentation, see http://haskell.org/cabal/users-guide/

-- The name of the package.
name:                yesod-auth-smbclient

-- The package version.  See the Haskell package versioning policy (PVP)
-- for standards guiding when and how versions should be incremented.
-- http://www.haskell.org/haskellwiki/Package_versioning_policy
-- PVP summary:      +-+------- breaking API changes
--                   | | +----- non-breaking API additions
--                   | | | +--- code changes with no API change
version:             1.0.0.0

-- A short (one-line) description of the package.
synopsis:            Authentication plugin for Yesod using smbclient

-- A longer description of the package.
description:         Provides smbclient authentication module that simply
                     lets a user specify his/her identifier.

-- The license under which the package is released.
license:             MIT

-- The file containing the license text.
license-file:        LICENSE

-- The package author(s).
author:              Kazuo Koga <obiwanko@me.com>

-- An email address to which users can send suggestions, bug reports, and
-- patches.
maintainer:          Kazuo Koga <obiwanko@me.com>

-- A copyright notice.
copyright:           (c) 2013 Kazuo Koga <obiwanko@me.com>

homepage:            https://github.com/kkazuo/yesod-auth-smbclient.git
bug-reports:         https://github.com/kkazuo/yesod-auth-smbclient.git/issues

category:            Web, Yesod

build-type:          Simple

-- Constraint on the version of Cabal needed to build this package.
cabal-version:       >=1.14

library
  default-language:  Haskell2010
  hs-source-dirs:    src
  ghc-options:       -Wall
                     -fno-warn-missing-signatures

  -- Modules exported by the library.
  exposed-modules:   Yesod.Auth.SmbClient

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

  -- Other library packages from which modules are imported.
  build-depends:     base <5
                   , hamlet
                   , sys-auth-smbclient ==2.0.*
                   , text
                   , yesod-auth
                   , yesod-core
                   , yesod-form

source-repository this
  type: git
  location: https://github.com/kkazuo/yesod-auth-smbclient.git
  tag: 1.0.0.0