summary refs log tree commit diff
path: root/pkgs/test
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2021-06-26 00:09:11 +0000
committerGitHub <noreply@github.com>2021-06-26 00:09:11 +0000
commit947012b992faa88e9d5b0d168c8f81c8e7cf995e (patch)
tree3b5f923312bb65436d1ffe6134af9ba8c9e9f0f2 /pkgs/test
parent4966eff42cf9976319ac34fa28f3af224723a771 (diff)
parentf15360e6a41e77aa479dd47896e709fd77214e4f (diff)
downloadnixpkgs-947012b992faa88e9d5b0d168c8f81c8e7cf995e.tar
nixpkgs-947012b992faa88e9d5b0d168c8f81c8e7cf995e.tar.gz
nixpkgs-947012b992faa88e9d5b0d168c8f81c8e7cf995e.tar.bz2
nixpkgs-947012b992faa88e9d5b0d168c8f81c8e7cf995e.tar.lz
nixpkgs-947012b992faa88e9d5b0d168c8f81c8e7cf995e.tar.xz
nixpkgs-947012b992faa88e9d5b0d168c8f81c8e7cf995e.tar.zst
nixpkgs-947012b992faa88e9d5b0d168c8f81c8e7cf995e.zip
Merge staging-next into staging
Diffstat (limited to 'pkgs/test')
-rw-r--r--pkgs/test/texlive/default.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/pkgs/test/texlive/default.nix b/pkgs/test/texlive/default.nix
index d8420d99136..86c0a7f795b 100644
--- a/pkgs/test/texlive/default.nix
+++ b/pkgs/test/texlive/default.nix
@@ -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"
+  '';
 }