tests.texlive.fixedHashes: ignore .tex attribute sets that are not derivations

This commit is contained in:
Vincenzo Mantova 2023-11-05 12:08:08 +00:00
parent 4fbe6527ac
commit f5edeac421

View File

@ -644,7 +644,7 @@ rec {
# ease of testing
fixedHashes = with lib; let
fods = lib.concatMap
(p: lib.optional (p ? tex) p.tex
(p: lib.optional (p ? tex && isDerivation p.tex) p.tex
++ lib.optional (p ? texdoc) p.texdoc
++ lib.optional (p ? texsource) p.texsource
++ lib.optional (p ? tlpkg) p.tlpkg)