typst/shell.nix

25 lines
441 B
Nix
Raw Normal View History

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
2024-11-18 11:13:17 +00:00
packages = with pkgs; [
2024-11-19 19:16:57 +00:00
typst
typstyle
tinymist
tdf
agebox
mermaid-cli
2024-11-18 11:13:17 +00:00
2024-11-19 19:16:57 +00:00
# for math
python312
python312Packages.sympy
python312Packages.numpy
python312Packages.matplotlib
python312Packages.scipy
python312Packages.pandas
python312Packages.jupyter
python312Packages.ipykernel
2024-11-28 18:53:33 +00:00
pre-commit
];
}