packages feed

digits-0.3: digits.cabal

Build-Type: Simple
Name: digits
Category: Data
Version: 0.3
Cabal-Version: >= 1.10
Synopsis: Converts integers to lists of digits and back.
Description: Converts integers to lists of digits and back.
License: BSD3
License-File: LICENSE
Copyright: (c) 2009-2016 Henry Bucklow, Charlie Harvey
Author: Henry Bucklow
Maintainer: henry@elsie.org.uk
Tested-With: GHC==7.10.3

library
  hs-source-dirs:      src
  exposed-modules:     Data.Digits
  build-depends:       base >= 4.7 && < 5
                     , QuickCheck
  default-language:    Haskell2010

test-suite digits-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
                     , src
  main-is:             Tests.hs
  build-depends:       base
                     , digits
                     , QuickCheck
  ghc-options:         -Wall -threaded -rtsopts -with-rtsopts=-N
  default-language:    Haskell2010

source-repository head
  type:     mercurial
  location: https://bitbucket.org/sffubs/digits