planktoscope/nix/shell.nix
2022-10-31 17:26:02 +01:00

23 lines
387 B
Nix

{pkgs ? import <nixpkgs> {}}:
with pkgs;
mkShell {
name = "planctoscope";
nativeBuildInputs = with pkgs; [
alejandra
docker
editorconfig-checker
git
gnumake
hadolint
mdl
nixpkgs-fmt
pre-commit
python310Packages.mkdocs
reuse
rnix-lsp
vscodium-fhs
yaml-language-server
yamllint
];
}