mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-19 11:23:29 +00:00
tests.texlive.fixedHashes: ignore .tex attribute sets that are not derivations
This commit is contained in:
parent
4fbe6527ac
commit
f5edeac421
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user