typstPackages: skip unpack phase

Some typst packages include a Makefile for unit tests, which break the
builds.
Since typst packages are just static files no attempt should be made to
build them.
This commit is contained in:
Kristian Krsnik
2025-05-09 20:10:47 +02:00
parent 0719ce0002
commit 58afedf468

View File

@@ -40,6 +40,8 @@ lib.extendMkDerivation {
{
name = "typst-package-${finalAttrs.pname}-${finalAttrs.version}";
dontUnpack = true;
installPhase =
let
outDir = "$out/lib/typst-packages/${finalAttrs.pname}/${finalAttrs.version}";