esp-bmc/nix/shell.nix

23 lines
364 B
Nix
Raw Permalink Normal View History

2024-09-10 01:39:52 +02:00
{self, ...}: system:
with self.pkgs.${system};
mkShell {
name = "esp-bmc";
nativeBuildInputs = [
alejandra
esphome
git
mosquitto
nil
nixVersions.git
pre-commit
reuse
yaml-language-server
yamllint
];
shellHook = ''
${self.checks.${system}.pre-commit-check.shellHook}
'';
}