summaryrefslogtreecommitdiff
path: root/meta/nix/packages.nix
diff options
context:
space:
mode:
Diffstat (limited to 'meta/nix/packages.nix')
-rw-r--r--meta/nix/packages.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/meta/nix/packages.nix b/meta/nix/packages.nix
new file mode 100644
index 0000000000..4af7b97e5b
--- /dev/null
+++ b/meta/nix/packages.nix
@@ -0,0 +1,18 @@
+{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;
+ };
+ };
+}