31 lines
376 B
Markdown
31 lines
376 B
Markdown
## installation
|
|
|
|
#### with Nix:
|
|
|
|
```bash
|
|
nix run git+https://git.mtgmonkey.net/Andromeda/hs-glsl
|
|
```
|
|
|
|
#### without Nix:
|
|
|
|
```bash
|
|
git clone https://git.mtgmonkey.net/Andromeda/hs-glsl
|
|
cd hs-glsl
|
|
cabal build
|
|
```
|
|
|
|
## usage
|
|
|
|
see `src/Main.hs` for an example
|
|
|
|
## development
|
|
|
|
#### with Nix
|
|
|
|
```bash
|
|
git clone https://git.mtgmonkey.net/Andromeda/hs-glsl
|
|
cd hs-glsl
|
|
nix develop
|
|
```
|
|
|