gore-and-ash-lambdacube: Core module for Gore&Ash engine that do something.

[ bsd3, game, library ] [ Propose Tags ]

Please see README.md


[Skip to Readme]

Flags

Automatic Flags
NameDescriptionDefault
examples

Enable building of examples

Disabled

Use -f <flag> to enable a flag, or -f -<flag> to disable that flag. More info

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.2.0.0
Change log CHANGELOG.md
Dependencies base (>=4.7 && <5), containers (>=0.5.6.2), deepseq (>=1.4.1.1), exceptions (>=0.8.2.1), GLFW-b (>=1.4.7.3), gore-and-ash (>=1.2.1.0), gore-and-ash-glfw (>=1.1.0.0), gore-and-ash-lambdacube, hashable (>=1.2.4.0), JuicyPixels (>=3.2.7), lambdacube-compiler (>=0.5.0.1), lambdacube-gl (>=0.5.0.5), lambdacube-ir (>=0.3.0.0), linear (>=1.20.4), mtl (>=2.2.1), text (>=1.2.2.0), transformers (>=0.4.2.0), unordered-containers (>=0.2.5.1), vector (>=0.11.0.0) [details]
License BSD-3-Clause
Copyright 2016 Anton Gushcha
Author Anton Gushcha
Maintainer ncrashed@gmail.com
Category Game
Home page https://github.com/TeaspotStudio/gore-and-ash-lambdacube#readme
Uploaded by NCrashed at 2016-11-19T22:44:34Z
Distributions
Reverse Dependencies 1 direct, 0 indirect [details]
Executables gore-and-ash-lambdacube-example04, gore-and-ash-lambdacube-example03, gore-and-ash-lambdacube-example02, gore-and-ash-lambdacube-example01
Downloads 942 total (4 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs uploaded by user
Build status unknown [no reports yet]

Readme for gore-and-ash-lambdacube-0.2.0.0

[back to package description]

gore-and-ash-lambdacube

The module provides API for something for Gore&Ash engine.

Installing

Add following to your stack.yml to packages section:

- location:
    git: https://github.com/TeaspotStudio/gore-and-ash-lambdacube.git
    commit: <PLACE HERE FULL HASH OF LAST COMMIT> 

When defining you application stack, add LambdaCubeT:

type AppStack = ModuleStack [LambdaCubeT, ... other modules ... ] IO

And derive MonadLambdaCube for your resulting AppMonad:

newtype AppMonad a = AppMonad (AppStack a)
  deriving (Functor, Applicative, Monad, MonadFix, MonadIO, MonadThrow, MonadCatch, MonadLambdaCube)

Building examples

The package has several examples, to build them pass examples flag:

stack install --flag gore-and-ash-lambdacube:examples