devshells: name shells for clarity

This commit is contained in:
Sam Lehman
2025-04-08 11:03:02 -04:00
committed by Mic92
parent 2c34f58a96
commit e0a6ed3d49
8 changed files with 8 additions and 0 deletions

View File

@@ -24,6 +24,7 @@
in in
{ {
devShells.default = pkgs.mkShell { devShells.default = pkgs.mkShell {
name = "clan";
packages = [ packages = [
select-shell select-shell
pkgs.nix-unit pkgs.nix-unit

View File

@@ -11,6 +11,7 @@
... ...
}: }:
pkgs.mkShell { pkgs.mkShell {
name = "clan-docs";
inputsFrom = [ inputsFrom = [
docs docs
self'.devShells.default self'.devShells.default

View File

@@ -19,6 +19,7 @@ in
}: }:
{ {
devShells.inventory-schema = pkgs.mkShell { devShells.inventory-schema = pkgs.mkShell {
name = "clan-inventory-schema";
inputsFrom = with config.checks; [ inputsFrom = with config.checks; [
lib-inventory-eval lib-inventory-eval
self'.devShells.default self'.devShells.default

View File

@@ -7,6 +7,7 @@
}: }:
mkShell { mkShell {
name = "clan-app";
inputsFrom = [ self'.devShells.default ]; inputsFrom = [ self'.devShells.default ];

View File

@@ -9,6 +9,7 @@
}: }:
mkShell { mkShell {
name = "clan-cli";
buildInputs = [ buildInputs = [
(clan-cli.pythonRuntime.withPackages ( (clan-cli.pythonRuntime.withPackages (
ps: ps:

View File

@@ -26,6 +26,7 @@ let
in in
mkShell { mkShell {
inherit (clan-vm-manager) nativeBuildInputs; inherit (clan-vm-manager) nativeBuildInputs;
name = "clan-vm-manager";
buildInputs = buildInputs =
[ [
ruff ruff

View File

@@ -1,5 +1,6 @@
{ pkgs }: { pkgs }:
pkgs.mkShell { pkgs.mkShell {
name = "clan-icon-update";
packages = with pkgs; [ deno ]; packages = with pkgs; [ deno ];
env = { env = {
FIGMA_ICON_FILE_ID = "KJgLnsBI9nvUt44qKJXmVm"; FIGMA_ICON_FILE_ID = "KJgLnsBI9nvUt44qKJXmVm";

View File

@@ -48,6 +48,7 @@
''; '';
}; };
devShells.webview-ui = pkgs.mkShell { devShells.webview-ui = pkgs.mkShell {
name = "clan-webview-ui";
inputsFrom = [ inputsFrom = [
config.packages.webview-ui config.packages.webview-ui
self'.devShells.default self'.devShells.default