mirror of
https://github.com/st-tu-dresden-praktikum/swt23w23
synced 2024-07-19 21:04:36 +02:00
99491b3b0d
Co-authored-by: Simon Bruder <simon.bruder@mailbox.tu-dresden.de>
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
|
|
];
|
|
}
|