summary refs log tree commit diff
path: root/pkgs/tools/typesetting
diff options
context:
space:
mode:
authorVincenzo Mantova <1962985+xworld21@users.noreply.github.com>2023-09-03 12:02:33 +0100
committerVincenzo Mantova <1962985+xworld21@users.noreply.github.com>2023-09-20 17:14:04 +0100
commit62657db38614020b4acb7b7de18e4cefceb91060 (patch)
tree7803947327b9afab15a25fea523278d6c771bd5c /pkgs/tools/typesetting
parent479646999c8cf4f7580d294b36742060fe1de170 (diff)
downloadnixpkgs-62657db38614020b4acb7b7de18e4cefceb91060.tar
nixpkgs-62657db38614020b4acb7b7de18e4cefceb91060.tar.gz
nixpkgs-62657db38614020b4acb7b7de18e4cefceb91060.tar.bz2
nixpkgs-62657db38614020b4acb7b7de18e4cefceb91060.tar.lz
nixpkgs-62657db38614020b4acb7b7de18e4cefceb91060.tar.xz
nixpkgs-62657db38614020b4acb7b7de18e4cefceb91060.tar.zst
nixpkgs-62657db38614020b4acb7b7de18e4cefceb91060.zip
texlive.combine: only derivations under .packages
Diffstat (limited to 'pkgs/tools/typesetting')
-rw-r--r--pkgs/tools/typesetting/tex/texlive/combine.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/typesetting/tex/texlive/combine.nix b/pkgs/tools/typesetting/tex/texlive/combine.nix
index 8a326572716..190270b486e 100644
--- a/pkgs/tools/typesetting/tex/texlive/combine.nix
+++ b/pkgs/tools/typesetting/tex/texlive/combine.nix
@@ -115,7 +115,7 @@ in (buildEnv {
 
   passthru = {
     # This is set primarily to help find-tarballs.nix to do its job
-    packages = pkgList.all;
+    packages = lib.filter lib.isDerivation pkgList.all;
     # useful for inclusion in the `fonts.packages` nixos option or for use in devshells
     fonts = "${texmfroot}/texmf-dist/fonts";
   };