hask-irc/hask-irc-core/hask-irc-core.cabal

81 lines
3.0 KiB
Plaintext
Raw Normal View History

2014-05-04 08:44:54 +05:30
-- 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-core
2014-05-04 08:44:54 +05:30
-- 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.
2014-05-25 17:22:56 +05:30
license-file: ../LICENSE
2014-05-04 08:44:54 +05:30
-- 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:
2014-05-25 15:52:15 +05:30
category: Network, IRC
2014-05-04 08:44:54 +05:30
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
2014-05-24 23:49:52 +05:30
default-extensions: NoImplicitPrelude, OverloadedStrings, RecordWildCards, ScopedTypeVariables,
2014-05-25 14:51:33 +05:30
BangPatterns, TupleSections, NamedFieldPuns, GeneralizedNewtypeDeriving,
DeriveDataTypeable
build-depends: base >=4.5 && <4.8,
classy-prelude >=0.9 && <1.0,
2014-06-01 23:14:19 +05:30
configurator >=0.2 && <0.3,
convertible >=1.1 && <1.2,
2014-05-25 14:51:33 +05:30
hslogger >=1.2 && <1.3,
hslogger-template >=2.0 && <2.1,
2014-06-01 23:14:19 +05:30
lifted-base >=0.2 && <0.3,
mtl >=2.1 && <2.2,
network >=2.3 && <2.5,
safecopy >=0.8 && <0.9,
text >=0.11 && <0.12,
text-format >=0.3 && <0.4,
time >=1.4 && <1.5,
transformers-base >=0.4 && <0.5,
unix >=2.7 && <2.8
2014-05-25 15:52:15 +05:30
exposed-modules: Network.IRC.Types,
Network.IRC.Protocol,
Network.IRC.Util,
2014-06-01 23:14:19 +05:30
Network.IRC.Bot,
Network.IRC.Client
2014-05-25 15:52:15 +05:30
default-language: Haskell2010
2014-05-04 08:44:54 +05:30
ghc-options: -Wall -fno-warn-unused-do-bind -O2 -funbox-strict-fields -fno-warn-orphans