packages feed

Nomyx-Rules-0.0.2: Nomyx-Rules.cabal

name: Nomyx-Rules
version: 0.0.2
cabal-version: >=1.6
build-type: Simple
license: BSD3
license-file: LICENSE
copyright: 2012 Corentin Dupont
maintainer: Corentin Dupont
stability: Experimental
synopsis: Language to express rules for Nomic
description: Provide a DSL to express rules for the Nomic game, with evaluation engine
category: Game Engine
author: Corentin Dupont
data-files: examples/Examples.hs src/Language/Nomyx/Evaluation.hs
            src/Language/Nomyx/Expression.hs src/Language/Nomyx/Rule.hs
            tests/Test.hs
data-dir: ""
extra-source-files: examples/Examples.hs tests/Test.hs, AUTHORS, README
 
library
    build-depends: base ==4.*, containers -any, ghc -any,
                   hint-server -any, hslogger -any, mtl -any, old-locale -any,
                   safe -any, stm -any, time -any, time-recurrence -any
    exposed-modules: Examples Language.Nomyx.Evaluation
                     Language.Nomyx.Expression Language.Nomyx.Rule Test Paths_Nomyx_Rules
    exposed: True
    buildable: True
    hs-source-dirs: examples src tests