mirror of
https://github.com/danbulant/introductionToProgramming
synced 2026-05-19 04:18:32 +00:00
16 lines
210 B
Nix
16 lines
210 B
Nix
{
|
|
pkgs ? import <nixpkgs> { },
|
|
}:
|
|
pkgs.mkShell rec {
|
|
buildInputs = with pkgs; [
|
|
jdk
|
|
typst
|
|
tinymist
|
|
nushell
|
|
];
|
|
nativeBuildInputs = with pkgs; [
|
|
jre
|
|
];
|
|
|
|
TYPST_FEATURES = "html";
|
|
}
|