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