packages feed

roller-0.1.7: roller.cabal

name:                roller
version:             0.1.7
synopsis:            Playing with applicatives and dice!
description:         A basic library and program for simulated rolling of
                     polyhedral dice, as would be used in pen and paper RPGs.
homepage:            https://github.com/PiotrJustyna/roller
license:             GPL-2
license-file:        LICENSE
author:              Piotr Justyna
maintainer:          piotr.justyna@gmail.com
copyright:           (c) 2016 Piotr Justyna
category:            ACME
build-type:          Simple
cabal-version:       >= 1.10

source-repository head
 type: git
 location: https://github.com/PiotrJustyna/roller.git

library
  exposed-modules:     Roller.Core,
                       Roller.Types,
                       Roller.Parse,
                       Roller.CLI
  build-depends:       base >= 4.6.0.1 && < 4.9,
                       random >= 1.0.1,
                       regex-applicative >= 0.3,
                       optparse-applicative >= 0.11.0
  default-language:    Haskell2010

executable roller
  main-is:             Roller.hs
  build-depends:       base >= 4.6.0.1,
                       random >= 1.0.1,
                       regex-applicative >= 0.3,
                       optparse-applicative >= 0.11.0,
                       roller
  default-language:    Haskell2010