mirror of
https://github.com/st-tu-dresden-praktikum/swt23w23
synced 2024-07-19 21:04:36 +02:00
18 lines
271 B
Nix
18 lines
271 B
Nix
{ pkgs ? import <nixpkgs> { } }:
|
|
with pkgs;
|
|
mkShell {
|
|
buildInputs = [
|
|
asciidoctor
|
|
editorconfig-checker
|
|
gitlint
|
|
jdk17
|
|
plantuml
|
|
pre-commit
|
|
watchexec # enables automatic compiling on change
|
|
];
|
|
|
|
shellHook = ''
|
|
pre-commit install
|
|
'';
|
|
}
|