feat: group ui related packages under a ui directory

This commit is contained in:
Brian McGee
2025-05-15 10:08:31 +01:00
parent c50cf54e33
commit c26cc9503c
186 changed files with 24055 additions and 29 deletions

View File

@@ -1,22 +0,0 @@
{ ... }:
{
perSystem =
{
config,
pkgs,
self',
...
}:
{
devShells.clan-app = pkgs.callPackage ./shell.nix {
inherit (config.packages) clan-app webview-lib;
inherit self';
};
packages.clan-app = pkgs.callPackage ./default.nix {
inherit (config.packages) clan-cli webview-ui webview-lib;
pythonRuntime = pkgs.python3;
};
checks = config.packages.clan-app.tests;
};
}