mirror of
https://github.com/danbulant/introductionToProgramming
synced 2026-05-19 20:38:36 +00:00
14 lines
185 B
Nix
14 lines
185 B
Nix
{
|
|
pkgs ? import <nixpkgs> { },
|
|
}:
|
|
pkgs.mkShell rec {
|
|
buildInputs = with pkgs; [
|
|
jdk
|
|
typst
|
|
];
|
|
nativeBuildInputs = with pkgs; [
|
|
jre
|
|
];
|
|
|
|
TYPST_FEATURES = "html";
|
|
}
|