Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/MadMcCrow/haxix
nix flake to build haxe projects (with heaps.io, raylib, lime, etc.)
https://github.com/MadMcCrow/haxix
haxe heapsio nix-flake nixos
Last synced: 25 days ago
JSON representation
nix flake to build haxe projects (with heaps.io, raylib, lime, etc.)
- Host: GitHub
- URL: https://github.com/MadMcCrow/haxix
- Owner: MadMcCrow
- License: mit
- Created: 2023-09-20T17:05:53.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-27T18:52:03.000Z (4 months ago)
- Last Synced: 2024-08-27T20:51:24.017Z (4 months ago)
- Topics: haxe, heapsio, nix-flake, nixos
- Language: Nix
- Homepage:
- Size: 1.29 MB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: docs/README.md
- Contributing: docs/CONTRIBUTING.md
Awesome Lists containing this project
- awesome-nix - haxix - Nix flake to build haxe/Heaps.io projects. (Programming Languages / Haxe)
README
# Haxix
A flake to build and run games made with [heaps.io](https://heaps.io/) and possibly other haxe game engines (raylib, armory, ...) in the future.
## Usage
Here's a quick code example.
```nix
{
# Add haxix to your flake inputs :
inputs.haxix.url = "github:MadMcCrow/haxix";
...
# and now you can access all our packages and functions
haxePkgs = haxix.legacyPackages."${system}";
}
```
for more details, look at the various templates, for example the [heaps template](../templates/)you can instantiate it in any folder with :
```
nix flake init -t github:MadMcCrow/haxix#heaps
```You can use `nix flake show --legacy` to see all the packages haxix provides
## TODO
See [TODO.md](./TODO.md). these are the most likely things to be added to the project.
## Contribute
Any [contribution](./CONTRIBUTING.md) welcome. You can contribute on features, documentation, or bug fixes.
## Licence
Licensed under [MIT](./Licence.md)
## Authors
See [AUTHORS](./AUTHORS.md) for the complete list of people who helped make haxix.
## Status
![check](https://github.com/MadMcCrow/haxix/actions/workflows/check.yml/badge.svg?branch=main)