summaryrefslogtreecommitdiff
path: root/shell.nix
diff options
context:
space:
mode:
Diffstat (limited to 'shell.nix')
-rw-r--r--shell.nix22
1 files changed, 22 insertions, 0 deletions
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 <nixpkgs> {} }:
+
+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
+ '';
+}
+
+
+