From 2b8507ae786ae6e32b2a945fd6caffd54934c779 Mon Sep 17 00:00:00 2001 From: cinereal Date: Thu, 10 Jul 2025 17:19:24 +0200 Subject: [PATCH] add nix shell with needed packages --- default.nix | 14 ++++++++++++++ shell.nix | 1 + 2 files changed, 15 insertions(+) create mode 100644 default.nix create mode 100644 shell.nix 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