Differences From Artifact [d47e05571e]:
- File default.nix — part of check-in [403a2346ff] at 2021-01-28 16:17:27 on branch trunk — initial check-in (user: jboy, size: 187) [annotate] [blame] [check-ins using]
- File shell.nix — part of check-in [c5cbf4bc54] at 2022-04-22 09:16:18 on branch trunk — rename default.nix to shell.nix (user: jboy, size: 187) [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 | with import <nixpkgs> {}; | | > | < | > | > > > | 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 ''; } |