rename devshells.ui to clan-app

This commit is contained in:
Jörg Thalheim
2025-05-15 13:20:58 +02:00
parent 57dcd47992
commit 354353f941
2 changed files with 2 additions and 6 deletions

View File

@@ -4,4 +4,4 @@ source_up
watch_file flake-module.nix shell.nix webview-ui/flake-module.nix
# Because we depend on nixpkgs sources, uploading to builders takes a long time
use flake .#ui --builders ''
use flake .#clan-app --builders ''

View File

@@ -15,16 +15,12 @@
webview-lib = pkgs.callPackage ./webview-lib { };
};
devShells.ui = pkgs.callPackage ./shell.nix {
devShells.clan-app = pkgs.callPackage ./shell.nix {
inherit self';
inherit (self'.packages) clan-app webview-lib webview-ui;
inherit (config.packages) clan-ts-api;
};
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;