commit 671ad775b677c7b76cc5ae2e7ed41f6c7b2335eb parent 59b733faa94d9fd67983a29088d52ce035c71df2 Author: Özgür Kesim <oec@codeblau.de> Date: Fri, 17 Apr 2026 18:17:46 +0200 [contrib] added contrib/nix for dev-shell via nix Diffstat:
| A | contrib/nix/shell.nix | | | 19 | +++++++++++++++++++ |
1 file changed, 19 insertions(+), 0 deletions(-)
diff --git a/contrib/nix/shell.nix b/contrib/nix/shell.nix @@ -0,0 +1,19 @@ +{ + pkgs ? import <nixpkgs> { }, +}: +pkgs.mkShell { + packages = with pkgs; [ + python312Packages.babel + python312Packages.beautifulsoup4 + python312Packages.chardet + python312Packages.distutils + python312Packages.idna + python312Packages.jinja2 + python312Packages.lxml + python312Packages.ruamel-yaml + nodejs + pnpm + gettext + git + ]; +}