Differences From Artifact [e6110a00bc]:
- File shell.nix — part of check-in [695e7769fc] at 2024-04-11 12:26:08 on branch revise-for-2024 — disable pdf generation for now as it is buggy (user: jboy, size: 209) [annotate] [blame] [check-ins using]
To Artifact [08683dcbd5]:
- File shell.nix — part of check-in [780e283550] at 2024-11-20 11:34:26 on branch revise-for-2024 — update shell.nix (user: jboy, size: 242) [annotate] [blame] [check-ins using] [more...]
1 2 3 4 | with import <nixpkgs> {}; mkShell { venvDir = ".venv"; buildInputs = [ | > | | | > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 | with import <nixpkgs> {}; mkShell { venvDir = ".venv"; buildInputs = [ pandoc (python311.withPackages (p: with p; [ mkdocs weasyprint ])).pkgs.venvShellHook ]; postShellHook = '' pip install mkdocs-with-pdf ''; } |