rename devshells.ui to clan-app

This commit is contained in:
Jörg Thalheim
2025-05-15 13:20:58 +02:00
parent 2561e3e4d1
commit 3b5f1f2c5c
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 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 # 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 { }; webview-lib = pkgs.callPackage ./webview-lib { };
}; };
devShells.ui = pkgs.callPackage ./shell.nix { devShells.clan-app = pkgs.callPackage ./shell.nix {
inherit self'; inherit self';
inherit (self'.packages) clan-app webview-lib webview-ui; inherit (self'.packages) clan-app webview-lib webview-ui;
inherit (config.packages) clan-ts-api; 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 { packages.clan-app = pkgs.callPackage ./default.nix {
inherit (config.packages) clan-cli webview-ui webview-lib; inherit (config.packages) clan-cli webview-ui webview-lib;
pythonRuntime = pkgs.python3; pythonRuntime = pkgs.python3;