mirror of
https://github.com/unmojang/meta.git
synced 2025-09-24 03:31:03 -04:00
19 lines
371 B
Nix
19 lines
371 B
Nix
{inputs, ...}: {
|
|
imports = [inputs.flake-parts.flakeModules.easyOverlay];
|
|
|
|
perSystem = {
|
|
config,
|
|
final,
|
|
...
|
|
}: {
|
|
packages = {
|
|
blockgame-meta = final.python3.pkgs.callPackage ./pkgs/blockgame-meta.nix {};
|
|
default = config.packages.blockgame-meta;
|
|
};
|
|
|
|
overlayAttrs = {
|
|
inherit (config.packages) blockgame-meta;
|
|
};
|
|
};
|
|
}
|