| CARVIEW |
Select Language
HTTP/1.1 200 OK
Connection: keep-alive
Server: nginx/1.24.0 (Ubuntu)
Content-Type: text/html; charset=utf-8
Cache-Control: public, max-age=300
Content-Encoding: gzip
Via: 1.1 varnish, 1.1 varnish
Accept-Ranges: bytes
Age: 0
Date: Sat, 17 Jan 2026 02:05:28 GMT
X-Served-By: cache-dfw-ktki8620049-DFW, cache-bom-vanm7210060-BOM
X-Cache: MISS, MISS
X-Cache-Hits: 0, 0
X-Timer: S1768615528.963162,VS0,VE823
Vary: Accept, Accept-Encoding
transfer-encoding: chunked
gore-and-ash-sdl: Gore&Ash core module for integration with SDL library
gore-and-ash-sdl: Gore&Ash core module for integration with SDL library
Modules
[Index]
Downloads
- gore-and-ash-sdl-2.1.1.0.tar.gz [browse] (Cabal source package)
- Package description (as included in the package)
Maintainer's Corner
For package maintainers and hackage trustees
Candidates
- No Candidates
| Versions [RSS] | 1.1.0.0, 1.1.0.1, 2.0.0.0, 2.1.0.0, 2.1.1.0 |
|---|---|
| Change log | CHANGELOG.md |
| Dependencies | base (>=4.7 && <5), containers (>=0.5.6.2), deepseq (>=1.4.1.1), exceptions (>=0.8.0.2), gore-and-ash (>=1.1.0.0), lens (>=4.13), linear (>=1.20.3), mtl (>=2.2.1), resourcet (>=1.1.7.1), sdl2 (>=2.1.1), text (>=1.2.2.0), transformers (>=0.4.2.0), transformers-base (>=0.4.4), unordered-containers (>=0.2.5.1) [details] |
| License | BSD-3-Clause |
| Copyright | 2016 Anton Gushcha |
| Author | Anton Gushcha |
| Maintainer | ncrashed@gmail.com |
| Uploaded | by NCrashed at 2016-11-19T16:13:54Z |
| Category | Game |
| Home page | git@github.com:Teaspot-Studio/gore-and-ash-sdl.git |
| Distributions | |
| Downloads | 3756 total (16 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-sdl-2.1.1.0
[back to package description]gore-and-ash-sdl
The module provides integraion with SDL2 library for Gore&Ash engine.
Installing
Add following to your stack.yml to packages section:
- location:
git: https://github.com/Teaspot-Studio/gore-and-ash-sdl.git
commit: <PLACE HERE FULL HASH OF LAST COMMIT>
When defining you application stack, add SDLT:
type AppStack = ModuleStack [SDLT, ... other modules ... ] IO
And derive MonadSDL for your resulting AppMonad:
newtype AppMonad a = AppMonad (AppStack a)
deriving (Functor, Applicative, Monad, MonadFix, MonadIO, MonadThrow, MonadCatch, MonadSDL)