flowflexure-microscope/nix/shell.nix

22 lines
375 B
Nix
Raw Normal View History

2023-09-17 16:11:37 +02:00
{self, ...}: system:
with self.pkgs.${system};
mkShell {
name = "flowflexure-nix";
nativeBuildInputs = [
alejandra
deadnix
git
nil
pre-commit
reuse
sca2d
statix
vscode-extensions.antyos.openscad
vscodium-fhs
];
shellHook = ''
${self.checks.${system}.pre-commit-check.shellHook}
'';
}