a one dimensional cellular automata, using comonads
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
368B

  1. { mkDerivation, base, brick, lib, ncurses, process, random, turtle
  2. }:
  3. mkDerivation {
  4. pname = "cellularAutomata";
  5. version = "0.1.0.0";
  6. src = ./..;
  7. isLibrary = false;
  8. isExecutable = true;
  9. executableHaskellDepends = [ base brick process random turtle ];
  10. executableSystemDepends = [ ncurses ];
  11. license = "unknown";
  12. hydraPlatforms = lib.platforms.none;
  13. }