about summary refs log tree commit diff
path: root/pkgs/tools/text
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2023-11-07 00:02:31 +0000
committerGitHub <noreply@github.com>2023-11-07 00:02:31 +0000
commit38bc2a577e066ed5bac95162e64615be86402216 (patch)
treea86c4435a02d3ea4b973ab1dc6eb725c7438be72 /pkgs/tools/text
parent6a9ebf2ffed672e1920bc30cb9bcfca97995470b (diff)
parentfe3d292f2ce29cbc121d4aa6242545d56a5034bf (diff)
downloadnixlib-38bc2a577e066ed5bac95162e64615be86402216.tar
nixlib-38bc2a577e066ed5bac95162e64615be86402216.tar.gz
nixlib-38bc2a577e066ed5bac95162e64615be86402216.tar.bz2
nixlib-38bc2a577e066ed5bac95162e64615be86402216.tar.lz
nixlib-38bc2a577e066ed5bac95162e64615be86402216.tar.xz
nixlib-38bc2a577e066ed5bac95162e64615be86402216.tar.zst
nixlib-38bc2a577e066ed5bac95162e64615be86402216.zip
Merge master into staging-next
Diffstat (limited to 'pkgs/tools/text')
-rw-r--r--pkgs/tools/text/sgml/linuxdoc-tools/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/text/sgml/linuxdoc-tools/default.nix b/pkgs/tools/text/sgml/linuxdoc-tools/default.nix
index dad9975ebf12..d2611bec7318 100644
--- a/pkgs/tools/text/sgml/linuxdoc-tools/default.nix
+++ b/pkgs/tools/text/sgml/linuxdoc-tools/default.nix
@@ -1,5 +1,5 @@
 { stdenv, lib, makeWrapper, fetchFromGitLab, perl, flex
-, gnused, coreutils, which, opensp, groff, texlive, texinfo, withLatex ? false
+, gnused, coreutils, which, opensp, groff, texliveMedium, texinfo, withLatex ? false
 }:
 
 stdenv.mkDerivation rec {
@@ -42,7 +42,7 @@ stdenv.mkDerivation rec {
   nativeBuildInputs = [ flex which makeWrapper ];
 
   buildInputs = [ opensp groff texinfo perl gnused coreutils ]
-    ++ lib.optionals withLatex [ texlive.combined.scheme-medium ];
+    ++ lib.optionals withLatex [ texliveMedium ];
 
   meta = with lib; {
     description = "Toolset for processing LinuxDoc DTD SGML files";