texlive.withPackages: treat texsource containers as regular outputs (#525956)

This commit is contained in:
Dmitry Kalinkin
2026-06-08 18:22:45 +00:00
committed by GitHub
2 changed files with 3 additions and 6 deletions
@@ -509,7 +509,7 @@ lib.fix (
postactionScripts = builtins.catAttrs "postactionScript" pkgList.tlpkg;
# whethe to include doc, source containers
# whether to include doc, source containers
withDocs = false;
withSources = false;
@@ -106,11 +106,8 @@ let
lib.optional hasBinfiles "out"
++ lib.optional hasRunfiles "tex"
++ lib.optional hasDocfiles "texdoc"
++
# omit building sources, since as far as we know, installing them is not common
# the sources will still be available under drv.texsource
# lib.optional hasSource "texsource" ++
lib.optional hasTlpkg "tlpkg"
++ lib.optional hasSource "texsource"
++ lib.optional hasTlpkg "tlpkg"
++ lib.optional hasManpages "man"
++ lib.optional hasInfo "info";
outputDrvs = lib.getAttrs outputs containers;