packages feed

setters-0.1: setters.cabal

Name:                setters

Version:             0.1

Synopsis:            Small (TH) library to declare setters for typical `record' data type fields.

-- A longer description of the package.
Description:         Haskell declares a getter for each `record' style data type field.
                     This library will help you declare setters (`setFieldName' function for `fieldName' field).

License:             BSD3

License-file:        LICENSE

Author:              IlyaPortnov

Maintainer:          portnov84@rambler.ru

-- A copyright notice.
-- Copyright:           

Category:            Data

Build-type:          Simple

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

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


Library
  -- Modules exported by the library.
  Exposed-modules:     Data.Setters, Control.Monad.State.Puts
  
  -- Packages needed in order to build this package.
  Build-depends:       base >= 3 && <= 5, mtl, template-haskell
  
  -- Modules not exported by this package.
  -- Other-modules:       
  
  -- Extra tools (e.g. alex, hsc2hs, ...) needed to build the source.
  -- Build-tools: