From f5ff82d7293b50ec412231e65b4480d6bf206fcc Mon Sep 17 00:00:00 2001 From: "user@node5.net" Date: Tue, 23 Jun 2026 00:39:08 +0200 Subject: nixify repo, 2026 headline design, debug environment variables --- shell.nix | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 shell.nix (limited to 'shell.nix') diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..04e4f10 --- /dev/null +++ b/shell.nix @@ -0,0 +1,22 @@ +{ pkgs ? import {} }: + +pkgs.mkShell { + buildInputs = [ + pkgs.gnumake + pkgs.python312 # Specify the Python version (adjust if needed) + pkgs.python312Packages.flask + pkgs.python312Packages.pyyaml + pkgs.python312Packages.markdown + pkgs.python312Packages.python-telegram-bot + pkgs.python312Packages.pygments + pkgs.python312Packages.tabulate # Format lists as ascii tables for comments + pkgs.sqlite # Database for comments + ]; + + shellHook = '' + # Runs when starting shell + ''; +} + + + -- cgit v1.3.1