Commit f5edeac4 authored by Vincenzo Mantova's avatar Vincenzo Mantova
Browse files

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

parent 4fbe6527
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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)