23 lines
387 B
Nix
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
|
||
|
];
|
||
|
}
|