about summary refs log tree commit diff
path: root/pkgs/tools/text
diff options
context:
space:
mode:
authorVincenzo Mantova <1962985+xworld21@users.noreply.github.com>2023-11-04 20:02:27 +0000
committerVincenzo Mantova <1962985+xworld21@users.noreply.github.com>2023-11-05 11:56:02 +0000
commit7a945b3874c2e28ce934ef33a18b6cab33362f8b (patch)
tree5e35ebc5cb04cf0e7e9f7c93a8f3750fb0da5888 /pkgs/tools/text
parent4d77ab5cb57ef029c1fcb55eac5aeae3ee6be74e (diff)
downloadnixlib-7a945b3874c2e28ce934ef33a18b6cab33362f8b.tar
nixlib-7a945b3874c2e28ce934ef33a18b6cab33362f8b.tar.gz
nixlib-7a945b3874c2e28ce934ef33a18b6cab33362f8b.tar.bz2
nixlib-7a945b3874c2e28ce934ef33a18b6cab33362f8b.tar.lz
nixlib-7a945b3874c2e28ce934ef33a18b6cab33362f8b.tar.xz
nixlib-7a945b3874c2e28ce934ef33a18b6cab33362f8b.tar.zst
nixlib-7a945b3874c2e28ce934ef33a18b6cab33362f8b.zip
linuxdoc-tools: replace texlive.combined.scheme-medium with texliveMedium
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";