chore: update typst nix-shell

This commit is contained in:
2024-11-21 16:20:20 +01:00
parent ab11ff0ea9
commit b6bdaeb9ec
3 changed files with 10 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
Start normal shell with `nix-shell -p <program>`
Run file with `nix-shell <file>`
+8
View File
@@ -0,0 +1,8 @@
with (import <nixpkgs> {});
mkShell {
buildInputs = [
(typst.overrideAttrs { version = "0.11.1"; })
];
}