fix(1b): merge devShells.${system} into one attr (dynamic-attr collision)

This commit is contained in:
2026-05-27 20:43:48 +01:00
parent 07952c0383
commit a0ea2f0aa9

View File

@ -39,16 +39,17 @@
]; ];
}; };
# Devshell for working on the harness/bridge locally. devShells.${system} = {
devShells.${system}.default = pkgs.mkShell { # Devshell for working on the harness/bridge locally (tools + lint toolchain).
default = pkgs.mkShell {
packages = (with pkgs; [ git jq curl ]) ++ lintTools; packages = (with pkgs; [ git jq curl ]) ++ lintTools;
}; };
# `nix develop .#lint` — exactly the lint toolchain, nothing else. Used by
# `nix develop .#lint` — exactly the lint toolchain, nothing else. Used by `scripts/lint.sh` # `scripts/lint.sh` and the `.drone.yml` lint stage.
# and the `.drone.yml` lint stage. lint = pkgs.mkShell {
devShells.${system}.lint = pkgs.mkShell {
packages = lintTools; packages = lintTools;
}; };
};
formatter.${system} = pkgs.nixpkgs-fmt; formatter.${system} = pkgs.nixpkgs-fmt;
}; };