packages feed

hactor-1.0.0.1: hactor.cabal

-- The name of the package.
name: hactor

-- 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.1

-- A short (one-line) description of the package.
synopsis: Lightweight Erlang-style actors for Haskell.

-- A longer description of the package.
description: Hactor is a library which aims to provide lightweight Erlang-style actors for Haskell.

-- URL for the project homepage or repository.
homepage: https://github.com/Forkk/hactor

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

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

-- The package author(s).
author: Forkk

-- An email address to which users can send suggestions, bug reports,
-- and patches.
maintainer: forkk@forkk.net

-- A copyright notice.
copyright: Copyright Forkk 2014

-- Stability of the pakcage (experimental, provisional, stable...)
stability: experimental
category: Concurrency
build-type: Simple

-- Extra files to be distributed with the package, such as examples or
-- a README.
extra-source-files: README.md

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

library
  -- Modules exported by the library.
  exposed-modules: Control.Concurrent.Actor
  
  -- Packages needed in order to build this package.
  build-depends:
      base                          >=4.7     && <4.8
    , mtl                           >=2.2     && <2.3
    , stm                           >=2.4     && <2.5
    , stm-chans                     >=3.0     && <3.1
    , containers                    >=0.5     && <0.6

  -- Extra options for ghc
  ghc-options: -Wall
  
  -- Modules not exported by this package.
  -- other-modules:
  
  -- Extra tools (e.g. alex, hsc2hs, ...) needed to build the source.
  -- build-tools:

  default-language: Haskell2010