123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- -- Initial hask-irc.cabal generated by cabal init. For further
- -- documentation, see http://haskell.org/cabal/users-guide/
-
- -- The name of the package.
- name: hask-irc-handlers
-
- -- 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: 0.1.0
-
- -- A short (one-line) description of the package.
- synopsis: A simple extensible IRC bot
-
- -- A longer description of the package.
- -- description:
-
- -- URL for the project homepage or repository.
- homepage: https://github.com/abhin4v/hask-irc
-
- -- The license under which the package is released.
- license: Apache-2.0
-
- -- The file containing the license text.
- license-file: ../LICENSE
-
- -- The package author(s).
- author: Abhinav Sarkar
-
- -- An email address to which users can send suggestions, bug reports, and
- -- patches.
- maintainer: abhinav@abhinavsarkar.net
-
- -- A copyright notice.
- -- copyright:
-
- category: Network, IRC
-
- build-type: Simple
-
- -- Extra files to be distributed with the package, such as examples or a
- -- README.
- -- extra-source-files:
-
- -- Constraint on the version of Cabal needed to build this package.
- cabal-version: >=1.10
-
- library
- default-extensions: NoImplicitPrelude, OverloadedStrings, RecordWildCards, ScopedTypeVariables,
- BangPatterns, TupleSections, NamedFieldPuns, GeneralizedNewtypeDeriving,
- DeriveDataTypeable
-
- build-depends: base >=4.5 && <4.8,
- hask-irc-core ==0.1.0,
- acid-state >=0.12 && <0.13,
- aeson >=0.7 && <0.8,
- classy-prelude >=0.10 && <1.0,
- convertible >=1.1 && <1.2,
- curl-aeson >=0.0.3 && <0.1,
- directory >=1.2 && <1.3,
- filepath >=1.3 && <1.4,
- hslogger >=1.2 && <1.3,
- hslogger-template >=2.0 && <2.1,
- HTTP >=4000 && <5000,
- ixset >=1.0 && <1.1,
- lifted-base >=0.2 && <0.3,
- mtl >=2.1 && <2.3,
- safecopy >=0.8 && <0.9,
- text >=1.1 && <1.2,
- text-format >=0.3 && <0.4,
- time >=1.4 && <1.5,
- uuid >=1.3 && <1.4
-
- exposed-modules: Network.IRC.Handlers,
- Network.IRC.Handlers.Auth,
- Network.IRC.Handlers.Auth.Types,
- Network.IRC.Handlers.Greet,
- Network.IRC.Handlers.MessageLogger,
- Network.IRC.Handlers.NickTracker,
- Network.IRC.Handlers.NickTracker.Types,
- Network.IRC.Handlers.SongSearch,
- Network.IRC.Handlers.Tell,
- Network.IRC.Handlers.Tell.Types
-
- other-modules: Network.IRC.Handlers.NickTracker.Internal.Types,
- Network.IRC.Handlers.Tell.Internal.Types
-
- default-language: Haskell2010
-
- ghc-options: -Wall -fno-warn-unused-do-bind -funbox-strict-fields -fno-warn-orphans
|