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