typst/shell.nix

23 lines
399 B
Nix
Raw Normal View History

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