mirror of
https://github.com/nmattia/snack.git
synced 2024-12-01 03:03:55 +03:00
7 lines
145 B
Nix
7 lines
145 B
Nix
{ main = "Main";
|
|
src = ./.;
|
|
dependencies = ["file-embed"];
|
|
extra-files =
|
|
(modName: if modName == "Main" then [ "foo.txt" ] else []);
|
|
}
|