diff --git a/default.nix b/default.nix new file mode 100644 index 0000000..e0ec4b7 --- /dev/null +++ b/default.nix @@ -0,0 +1,14 @@ +{ + pkgs ? import { }, +}: +{ + shell = pkgs.mkShellNoCC { + packages = with pkgs; [ + pandoc + texliveMedium + librsvg + mermaid-cli + plantuml + ]; + }; +} diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..a6bdf20 --- /dev/null +++ b/shell.nix @@ -0,0 +1 @@ +(import ./. { }).shell