-
Notifications
You must be signed in to change notification settings - Fork 2
/
dice.cabal
35 lines (27 loc) · 1 KB
/
dice.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: dice
version: 0.1.0.1
stability: work-in-progress
cabal-version: >= 1.6
build-type: Simple
author: James Cook <[email protected]>
maintainer: Bertram Felgenhauer <[email protected]>
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