packages feed

data-default-generics-0.3: data-default-generics.cabal

Name:            data-default-generics
Version:         0.3
Cabal-Version:   >= 1.10
Category:        Data
Synopsis:        A class for types with a default value
Description:     A class for types with a default value.
                 Features generics support to add defaults to records.
Build-Type:      Simple
License:         BSD3
License-File:    LICENSE
Author:          Lukas Mai 2011-2013, Jonathan Fischoff 2013, João Cristóvão 2014
Maintainer:      <jmacristovao@gmail.com> 

source-repository head
  type: git
  location: https://github.com/jcristovao/data-default-generics

Library
  Build-Depends:     base >=2 && <5
                   , containers
                   , dlist
                   , old-locale
                   , time >= 1.4.0.1
                   , ghc-prim
                   , text
                   , bytestring
                   , containers
                   , unordered-containers
                   , vector > 0.10
  Exposed-Modules:   Data.Default.Generics
  Ghc-Options:       -Wall
  hs-source-dirs:    src
  default-language:    Haskell2010

test-suite test
  type:             exitcode-stdio-1.0
  main-is:          main.hs
  hs-source-dirs:   test,src
  build-depends:    base >=2
                  , containers
                  , dlist
                  , old-locale
                  , time >= 1.4.0.1
                  , ghc-prim
                  , text
                  , bytestring
                  , containers
                  , unordered-containers
                  , vector > 0.10
                  , hspec
                  , HUnit
  default-language:    Haskell2010