first commit

This commit is contained in:
Thorn Avery 2021-04-18 13:29:09 +12:00
commit d5403500fa
11 changed files with 420 additions and 0 deletions

13
nix/cellularAutomata.nix Normal file
View file

@ -0,0 +1,13 @@
{ mkDerivation, base, brick, lib, ncurses, process, random, turtle
}:
mkDerivation {
pname = "cellularAutomata";
version = "0.1.0.0";
src = ./..;
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [ base brick process random turtle ];
executableSystemDepends = [ ncurses ];
license = "unknown";
hydraPlatforms = lib.platforms.none;
}