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