1
Fork 0
satellite/devshells/typst.nix

9 lines
172 B
Nix
Raw Normal View History

# Shell for using a pinned version of typst
{ pkgs, upkgs, inputs, ... }:
pkgs.mkShell {
nativeBuildInputs = [
# REASON: not on nixpkgs-stable
upkgs.typst
];
}