packages feed

data-lens-template-2.2: data-lens-template.cabal

name:          data-lens-template
version:       2.2
license:       BSD3
license-file:  LICENSE
author:        Joel Burget <joelburget@gmail.com>
maintainer:    Russell O'Connor <roconnor@theorem.ca>
category:      Data
synopsis:      Utilities for Data.Lens
description:   Automatically derive @Lens@es for your data type for use with @Data.Lens@. Note: the code is derived from data-accessor-template <http://hackage.haskell.org/package/data-accessor-template> by Luke Palmer and Henning Thielemann.
build-type:    Simple
homepage:      http://github.com/roconnor/data-lens-template/
cabal-version: >= 1.6

source-repository head
  type    : git
  location: git@github.com:roconnor/data-lens-template.git

library
  extensions:       CPP
  other-extensions: TemplateHaskell

  build-depends:
    data-lens        >= 2.0 && < 2.12,
    base             >= 1.0 && < 5,
    template-haskell >= 2.11 && < 2.12

  exposed-modules:
    Data.Lens.Template

  ghc-options: -Wall