| CARVIEW |
h-raylib: Raylib bindings for Haskell
This library contains Haskell bindings to the Raylib library. It supports Windows, Mac, Linux, and BSD.
[Skip to Readme]
Modules
- Raylib
- Raylib.Core
- Raylib.Core.Audio
- Raylib.Core.Camera
- Raylib.Core.Models
- Raylib.Core.Shapes
- Raylib.Core.Text
- Raylib.Core.Textures
- Raylib.Internal
- Raylib.Internal.Foreign
- Raylib.Types
- Raylib.Types.Core
- Raylib.Types.Core.Audio
- Raylib.Types.Core.Camera
- Raylib.Types.Core.Models
- Raylib.Types.Core.Text
- Raylib.Types.Core.Textures
- Util
- Raylib.Types.Util.GUI
- Raylib.Types.Util.RLGL
- Raylib.Types.Core
- Raylib.Util
- Raylib.Util.Camera
- Raylib.Util.Colors
- Raylib.Util.GUI
- Raylib.Util.GUI.Styles
- Raylib.Util.Lenses
- Raylib.Util.Math
- Raylib.Util.RLGL
- Raylib.Core
Flags
Manual Flags
| Name | Description | Default |
|---|---|---|
| detect-platform | Detect platform and automatically add platform-specific configuration | Enabled |
| platform-windows | Build for Windows | Disabled |
| platform-mac | Build for macOS/OSX | Disabled |
| platform-linux | Build for Linux | Disabled |
| platform-bsd | Build for FreeBSD, OpenBSD, or NetBSD | Disabled |
| platform-nixos | Build for Nix (use external GLFW) | Disabled |
| platform-web | Build for web | Disabled |
| mingw-cross | Cross-compiling for mingw (used in combination with Windows) | Disabled |
| examples | Build the example projects | Disabled |
| ghci | Used when running the program in GHCi | Disabled |
| disable-lens | Exclude the lens dependency and Raylib.Util.Lenses | Disabled |
Use -f <flag> to enable a flag, or -f -<flag> to disable that flag. More info
Downloads
- h-raylib-5.5.3.1.tar.gz [browse] (Cabal source package)
- Package description (revised from the package)
Note: This package has metadata revisions in the cabal description newer than included in the tarball. To unpack the package including the revisions, use 'cabal get'.
Maintainer's Corner
For package maintainers and hackage trustees
Candidates
- No Candidates
| Versions [RSS] | 4.5.0.1, 4.5.0.2, 4.5.0.3, 4.5.0.4, 4.5.0.5, 4.5.0.6, 4.5.0.7, 4.5.0.8, 4.5.0.9, 4.5.0.10, 4.5.0.11, 4.5.0.12, 4.5.1.0, 4.5.1.1, 4.5.2.0, 4.5.3.0, 4.5.3.1, 4.5.3.2, 4.5.3.3, 4.5.3.4, 4.6.0.1, 4.6.0.2, 4.6.0.3, 4.6.0.4, 4.6.0.5, 4.6.0.6, 4.6.0.7, 5.1.0.1, 5.1.1.0, 5.1.2.0, 5.1.3.0, 5.5.0.0, 5.5.1.0, 5.5.2.0, 5.5.2.1, 5.5.3.0, 5.5.3.1 |
|---|---|
| Change log | CHANGELOG.md |
| Dependencies | base (>=4.0 && <4.23), bytestring (>=0.11.0 && <0.13), containers (>=0.6.0 && <0.9), lens (>=4.0 && <5.4), linear (>=1.22 && <1.24), template-haskell (>=2.16.0.0 && <2.24), text (>=2.0 && <2.2) [details] |
| Tested with | ghc >=9.6.5 |
| License | Apache-2.0 |
| Author | Anut |
| Maintainer | Anut |
| Uploaded | by Anut at 2025-10-14T22:43:25Z |
| Revised | Revision 1 made by Anut at 2025-10-24T02:09:22Z |
| Category | graphics |
| Bug tracker | https://github.com/Anut-py/h-raylib/issues |
| Source repo | head: git clone https://github.com/Anut-py/h-raylib.git |
| Distributions | NixOS:5.5.3.1 |
| Reverse Dependencies | 1 direct, 0 indirect [details] |
| Executables | raygui-suite, basic-rlgl, basic-audio, postprocessing-effects, basic-shaders, basic-models, custom-font-text, bunnymark, basic-images, camera-ray-collision, first-person-camera, basic-automation-events, basic-callbacks, basic-window |
| Downloads | 3371 total (194 in the last 30 days) |
| Rating | 2.5 (votes: 3) [estimated by Bayesian average] |
| Your Rating |
|
| Status | Docs not available [build log] All reported builds failed as of 2025-10-14 [all 2 reports] |
Readme for h-raylib-5.5.3.1
[back to package description]h-raylib: Haskell bindings for Raylib
This library includes Haskell bindings to the Raylib library.
Basic usage | Platform specific requirements | Advanced usage | GHCi | Documentation | FAQ and help
Basic usage
To use this package, include it as a dependency in your cabal file.
build-depends:
base,
# ...
h-raylib
It should work out of the box. See Advanced usage for more complex use cases.
Platform specific requirements
This library is known to work on Windows, Linux, and Mac. It may not work properly on other platforms, so don't hesitate to report issues on the GitHub repository.
Windows/Mac
h-raylib should automatically work if you do not disable the detect-platform flag. In that case, you may skip this step.
If you do disable the detect-platform flag when building, use the platform-windows or platform-mac flag when building.
Linux
You may need to run the following to install X11 (a window manager for Linux).
sudo apt-get install libx11-dev libxrandr-dev libxi-dev libxcursor-dev libxinerama-dev
Now, h-raylib should automatically work if you do not disable the detect-platform flag. In that case, you may skip the following.
If you do disable the detect-platform flag when building, use the platform-linux flag when building
BSD (Experimental)
h-raylib should automatically work if you do not disable the detect-platform flag. In that case, you may skip this step.
If you do disable the detect-platform flag when building, use the platform-bsd flag when building.
Other platforms
This library has not yet been tested on other platforms (raylib supports Android, Raspberry Pi, and DRM, all of which have not been implemented in h-raylib). Anybody willing to try is welcome.
Web support has not been finalized yet.
If you get it working on other platforms, please create a pull request in the
GitHub repository and update h-raylib.cabal with the relevant config.
Advanced usage
Your platform-specific dependencies will automatically be built by default. You
may want to disable this behavior. You can disable the detect-platform flag to
achieve this.
You can do this through the command line when running your project, like so
cabal run --constraint="h-raylib -detect-platform"
Or you can add it to your cabal.project file.
package h-raylib
flags: -detect-platform
The flags platform-windows, platform-mac, platform-linux, and platform-bsd are also
supported if you want to build for a different platform.
If you prefer not to use the lens package, you may enable the disable-lens flag. This
removes the dependency on lens and disables Raylib.Util.Lenses.
Running in GHCi
You can use this library in GHCi just like any other library, but you will need to add --constraint="h-raylib +ghci" to the command. For example, in the root folder of this repository, you could use the command below to use the library through GHCi.
cabal repl --constraint="h-raylib +ghci"
You may need to use :set -fno-ghci-sandbox after entering the REPL to fix problems with multithreaded execution.
On Windows, you may lose joystick support when running in GHCi.
Documentation
For documentation: DOCUMENTATION.md.
For contributors: CONTRIBUTING.md.
If you want to request a feature, create an issue in the GitHub repo. Please check the roadmap to see if the feature has already been planned.
FAQ and help
-
When I try to run an h-raylib program I get the error
The code execution cannot proceed because libwinpthread-1.dll was not found. Reinstalling the program may fix this problem.- See #14
-
When I try to compile an h-raylib program I get the error
Missing (or bad) C libraries: gcc_eh- See #36
If you find a bug, please create an issue on GitHub. There are probably some bindings that are incomplete or do not work properly, so if something seems wrong then it is most likely a bug.
If you have a question about the library that is not related to a bug, ask it on GitHub discussions or in the Haskell GameDev Discord server.
License
This project is licensed under the Apache License 2.0. See more in LICENSE.