working 2d animation, but leaks memory

This commit is contained in:
Thorn Avery 2021-04-20 14:25:18 +12:00
parent b45de145fe
commit d582c20af3
6 changed files with 363 additions and 214 deletions

View file

@ -1,4 +1,5 @@
{ mkDerivation, base, brick, lib, ncurses, process, random, turtle
{ mkDerivation, base, brick, containers, deepseq, lib, linear
, microlens, microlens-th, ncurses, process, random, turtle, vty
}:
mkDerivation {
pname = "cellularAutomata";
@ -6,7 +7,10 @@ mkDerivation {
src = ./..;
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [ base brick process random turtle ];
executableHaskellDepends = [
base brick containers deepseq linear microlens microlens-th process
random turtle vty
];
executableSystemDepends = [ ncurses ];
license = "unknown";
hydraPlatforms = lib.platforms.none;