1
Fork 0
satellite/devshells/typst.nix

9 lines
156 B
Nix
Raw Normal View History

# Shell for using a pinned version of typst
{ pkgs, upkgs, ... }:
pkgs.mkShell {
nativeBuildInputs = [
# REASON: version 0.7.0
upkgs.typst
];
}