add nix shell with needed packages

This commit is contained in:
Kiara Grouwstra 2025-07-10 17:19:24 +02:00
parent 798522c747
commit 2b8507ae78
Signed by: kiara
SSH key fingerprint: SHA256:COspvLoLJ5WC5rFb9ZDe5urVCkK4LJZOsjfF4duRJFU
2 changed files with 15 additions and 0 deletions

14
default.nix Normal file
View file

@ -0,0 +1,14 @@
{
pkgs ? import <nixpkgs> { },
}:
{
shell = pkgs.mkShellNoCC {
packages = with pkgs; [
pandoc
texliveMedium
librsvg
mermaid-cli
plantuml
];
};
}

1
shell.nix Normal file
View file

@ -0,0 +1 @@
(import ./. { }).shell