about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorVincenzo Mantova <1962985+xworld21@users.noreply.github.com>2024-05-20 03:01:47 +0100
committerGitHub <noreply@github.com>2024-05-19 22:01:47 -0400
commitf72f67152a44df2d2c09a578bac8e09b9390279b (patch)
tree4deba651b9c65533dde02b34772f0a0a03e99eb2 /pkgs/tools
parente8c23325af4a79968a1db716e93032d2c9977d7a (diff)
texlive: set allowSubstitutes, preferLocalBuild values (#312049)
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/typesetting/tex/texlive/build-tex-env.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/tools/typesetting/tex/texlive/build-tex-env.nix b/pkgs/tools/typesetting/tex/texlive/build-tex-env.nix
index 59b520e50c3bb..148e51f55de58 100644
--- a/pkgs/tools/typesetting/tex/texlive/build-tex-env.nix
+++ b/pkgs/tools/typesetting/tex/texlive/build-tex-env.nix
@@ -308,6 +308,9 @@ buildEnv' {
   postBuild = ''
     . "${./build-tex-env.sh}"
   '';
+
+  allowSubstitutes = true;
+  preferLocalBuild = false;
 };
   # outputsToInstall must be set *after* overrideAttrs (used in buildEnv') or it fails the checkMeta tests
 in if __combine || __formatsOf != null then out else lib.addMetaAttrs { inherit (pkgList) outputsToInstall; } out)