From a75da8d0dcc8a960c1d352290bdda9962e2c8fea Mon Sep 17 00:00:00 2001 From: Ross Smyth <18294397+RossSmyth@users.noreply.github.com> Date: Fri, 3 Jul 2026 23:55:21 -0400 Subject: [PATCH] typstPackages: Do not build in Hydra Downloading from the cache is basically the same building anyways, no reason to build on Hydra TBH. --- pkgs/by-name/ty/typst/build-universe-package.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/by-name/ty/typst/build-universe-package.nix b/pkgs/by-name/ty/typst/build-universe-package.nix index a7628f6412dd..af1e0cf4dbe3 100644 --- a/pkgs/by-name/ty/typst/build-universe-package.nix +++ b/pkgs/by-name/ty/typst/build-universe-package.nix @@ -45,6 +45,8 @@ lib.extendMkDerivation { RossSmyth ]; license = lib.map (lib.flip lib.getAttr lib.licensesSpdx) license; + # Sending a bunch of trivial jobs to Hydra is not that great. + hydraPlatforms = [ ]; } // lib.optionalAttrs (homepage != null) { inherit homepage; }; };