{ lib , stdenv , typst , typstPackages }: stdenv.mkDerivation { pname = "phd_fluid_mechanics_report"; version = "0.0.0"; src = ../typst; nativeBuildInputs = [ typst ] ++ (with typstPackages; [ charged-ieee ]); buildPhase = '' typst compile report.typ out.pdf ''; installPhase = '' mkdir -p $out mv out.pdf $out/report.pdf ''; }