tests.texlive.texdoc: init

This commit is contained in:
Dmitry Kalinkin 2021-06-23 22:16:37 -04:00
parent 6d56f95424
commit 53d6abc682
No known key found for this signature in database
GPG key ID: 5157B3EC8B2CA333

View file

@ -105,4 +105,18 @@
mkdir "$out"
mv document*.svg "$out"/
'';
texdoc = runCommandNoCC "texlive-test-texdoc" {
nativeBuildInputs = [
(with texlive; combine {
inherit scheme-infraonly luatex texdoc;
pkgFilter = pkg: lib.elem pkg.tlType [ "run" "bin" "doc" ];
})
];
} ''
texdoc --version
texdoc --debug --list texdoc | tee "$out"
grep texdoc.pdf "$out"
'';
}