a one dimensional cellular automata, using comonads
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

18 行
491B

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