a one dimensional cellular automata, using comonads
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

cellularAutomata.nix 368B

před 3 roky
12345678910111213
  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. }