first commit
This commit is contained in:
commit
d5403500fa
11 changed files with 420 additions and 0 deletions
13
nix/cellularAutomata.nix
Normal file
13
nix/cellularAutomata.nix
Normal 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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue