reflex-sdl2: SDL2 and reflex FRP

[ game, library, mit, program ] [ Propose Tags ]

A minimal host for sdl2 based reflex apps.


[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1.0.0, 0.2.0.0, 0.3.0.0
Dependencies async (>=2.1 && <2.2), base (>=4.7 && <5), containers (>=0.5 && <0.6), dependent-sum (>=0.4 && <0.5), exception-transformers (>=0.4 && <0.5), mtl (>=2.2 && <2.3), primitive (>=0.6 && <0.7), ref-tf (>=0.4 && <0.5), reflex (>=0.5 && <0.6), reflex-sdl2, sdl2 (>=2.3 && <2.4), stm (>=2.4 && <2.5) [details]
License MIT
Copyright Copyright: (c) 2017 Schell Scivally
Author Schell Scivally
Maintainer schell@takt.com
Category Game
Home page https://github.com/schell/reflex-sdl2#readme
Source repo head: git clone https://github.com/schell/reflex-sdl2
Uploaded by SchellScivally at 2017-10-30T05:05:55Z
Distributions
Executables reflex-sdl2-exe
Downloads 1958 total (10 in the last 30 days)
Rating 2.0 (votes: 1) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs uploaded by user [build log]
All reported builds failed as of 2017-10-30 [all 3 reports]

Readme for reflex-sdl2-0.2.0.0

[back to package description]

reflex-sdl2

This is a reflex host for sdl2.

Writing and running sdl2 apps requires version 2 of the awesome SDL library. If you have nix then the build process will install SDL2 for you.

building

with stack & nix

Using stack and nix together is the path of enlightenment. nix handles installing SDL2 while stack builds the haskell deps.

stack --nix build

without nix

Without nix you'll have to install SDL2 yourself.

macOS

Using homebrew...

brew install sdl2

Ubuntu / Debian

The sdl2 bindings require SDL >= 2.0.4, or for special instructions to be followed. Assuming you're on Ubuntu >= 16.04, you can run

apt-get install libsdl2-dev

otherwise please visit the org page above and install via their README.

examples

After building you can view an example using the built-in 2d renderer in app/Main.hs.

To run the example do:

stack --nix exec reflex-sdl2-exe