introductionToProgramming/shell.nix
2025-10-07 17:15:22 +02:00

14 lines
185 B
Nix

{
pkgs ? import <nixpkgs> { },
}:
pkgs.mkShell rec {
buildInputs = with pkgs; [
jdk
typst
];
nativeBuildInputs = with pkgs; [
jre
];
TYPST_FEATURES = "html";
}