dice-0.1.0.1: dice.cabal
name: dice
version: 0.1.0.1
stability: work-in-progress
cabal-version: >= 1.6
build-type: Simple
author: James Cook <mokus@deepbondi.net>
maintainer: Bertram Felgenhauer <int-e@gmx.de>
license: PublicDomain
category: Game
synopsis: Simplistic D&D style dice-rolling system.
description: Simplistic D&D style dice-rolling system.
.
> $ dice "2d10 + 2 * (d100 / d6)"
> (5+2) + 2 * 64 / 2 => 71
bug-reports: https://github.com/lambdabot/dice/issues
extra-source-files:
CHANGELOG
source-repository head
type: git
location: git://github.com/lambdabot/dice.git
Library
hs-source-dirs: src
exposed-modules: Data.Random.Dice
build-depends: base >= 3 && < 5, random-fu, parsec, transformers
Executable dice
hs-source-dirs: src
main-is: Dice.hs