packages feed

record-0.4.0.0: record.cabal

name:
  record
version:
  0.4.0.0
synopsis:
  Anonymous records
description:
  This library provides the abstractions behind the anonymous record syntax.
  It is intended to be used in conjunction with
  <http://hackage.haskell.org/package/record-preprocessor the "record-preprocessor">,
  which enables a Haskell syntax extension.
category:
  Control, Data Structures, Records
homepage:
  https://github.com/nikita-volkov/record 
bug-reports:
  https://github.com/nikita-volkov/record/issues 
author:
  Nikita Volkov <nikita.y.volkov@mail.ru>
maintainer:
  Nikita Volkov <nikita.y.volkov@mail.ru>
copyright:
  (c) 2015, Nikita Volkov
license:
  MIT
license-file:
  LICENSE
build-type:
  Simple
cabal-version:
  >=1.10
extra-source-files:
  CHANGELOG.md


source-repository head
  type:
    git
  location:
    git://github.com/nikita-volkov/record.git


library
  hs-source-dirs:
    library
  default-extensions:
    Arrows, BangPatterns, ConstraintKinds, DataKinds, DefaultSignatures, DeriveDataTypeable, DeriveFunctor, DeriveGeneric, EmptyDataDecls, FlexibleContexts, FlexibleInstances, FunctionalDependencies, GADTs, GeneralizedNewtypeDeriving, ImpredicativeTypes, LambdaCase, LiberalTypeSynonyms, MagicHash, MultiParamTypeClasses, MultiWayIf, NoImplicitPrelude, NoMonomorphismRestriction, OverloadedStrings, PatternGuards, ParallelListComp, QuasiQuotes, RankNTypes, RecordWildCards, ScopedTypeVariables, StandaloneDeriving, TemplateHaskell, TupleSections, TypeFamilies, TypeOperators, UnboxedTuples
  default-language:
    Haskell2010
  other-modules:
    Record.TH
  exposed-modules:
    Record
  build-depends:
    -- 
    template-haskell == 2.*,
    -- 
    basic-lens == 0.0.*,
    base-prelude >= 0.1 && < 0.2,
    base >= 4.6 && < 4.9