swt23w23/shell.nix
Denis Natusch 99491b3b0d Add nix shell
Co-authored-by: Simon Bruder <simon.bruder@mailbox.tu-dresden.de>
2023-11-11 14:26:18 +00:00

11 lines
172 B
Nix

{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell {
buildInputs = [
asciidoctor
jdk17
plantuml
watchexec # enables automatic compiling on change
];
}