15 lines
185 B
Nix
Executable file
15 lines
185 B
Nix
Executable file
{ default, ... }:
|
|
{
|
|
systems = ["x86_64-linux"];
|
|
|
|
perSystem = {
|
|
pkgs,
|
|
inputs',
|
|
...
|
|
}: {
|
|
packages = {
|
|
_2048 = pkgs.callPackage ./2048 {};
|
|
|
|
};
|
|
};
|
|
} |