Differences From Artifact [0c2df29181]:
- File shell.nix — part of check-in [8932f74054] at 2023-04-14 10:18:40 on branch revise-for-2023 — enable PDF generation (user: jboy, size: 220) [annotate] [blame] [check-ins using]
To 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]
1 2 3 | with import <nixpkgs> {}; mkShell { venvDir = ".venv"; | | | | < < < | 1 2 3 4 5 6 7 8 9 | with import <nixpkgs> {}; mkShell { venvDir = ".venv"; buildInputs = [ haskellPackages.pandoc (python310.withPackages (p: with p; [ weasyprint mkdocs ])) python310Packages.venvShellHook ]; } |