Skip to content

Commit

Permalink
texlive.combine: fix requiredTexPackages (NixOS#356155)
Browse files Browse the repository at this point in the history
  • Loading branch information
ck3d authored Dec 1, 2024
2 parents 4454e70 + 1555c00 commit ef1b631
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/tools/typesetting/tex/texlive/build-tex-env.nix
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ let
# This is set primarily to help find-tarballs.nix to do its job
requiredTeXPackages = builtins.filter lib.isDerivation (pkgList.bin ++ pkgList.nonbin
++ lib.optionals (! __fromCombineWrapper)
(lib.concatMap (n: (pkgList.otherOutputs.${n} or [ ] ++ pkgList.specifiedOutputs.${n} or [ ]))) pkgList.nonEnvOutputs);
(lib.concatMap (n: (pkgList.otherOutputs.${n} or [ ] ++ pkgList.specifiedOutputs.${n} or [ ])) pkgList.nonEnvOutputs));
# useful for inclusion in the `fonts.packages` nixos option or for use in devshells
fonts = "${texmfroot}/texmf-dist/fonts";
# support variants attrs, (prev: attrs)
Expand Down

0 comments on commit ef1b631

Please sign in to comment.