1
Fork 0
satellite/devshells/typst.nix
2023-05-18 01:56:19 +02:00

9 lines
172 B
Nix

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